Fix a typo on css
This commit is contained in:
parent
b7266aceac
commit
0e9104a58f
2 changed files with 4 additions and 4 deletions
|
@ -976,7 +976,7 @@ img {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
.visable {
|
||||
.visible {
|
||||
visibility: visible !important;
|
||||
}
|
||||
|
||||
|
|
|
@ -78,7 +78,7 @@ $(function() {
|
|||
hints.removeClass("unloaded");
|
||||
}
|
||||
resultWrapper.addClass("unloaded");
|
||||
btnClear.removeClass("visable");
|
||||
btnClear.removeClass("visible");
|
||||
main.removeClass("hidden");
|
||||
|
||||
input.val("");
|
||||
|
@ -130,7 +130,7 @@ $(function() {
|
|||
resultSwitch.on();
|
||||
|
||||
if (!btnClear.hasClass("visible")) {
|
||||
btnClear.addClass("visable");
|
||||
btnClear.addClass("visible");
|
||||
}
|
||||
|
||||
if (isMobileView()) {
|
||||
|
@ -149,7 +149,7 @@ $(function() {
|
|||
resultSwitch.off();
|
||||
}
|
||||
input.focus();
|
||||
btnClear.removeClass("visable");
|
||||
btnClear.removeClass("visible");
|
||||
});
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue