Fix forced hiding if logged out.
This commit is contained in:
parent
d33229e472
commit
6b7eebe9f3
3
js/ui.js
3
js/ui.js
|
@ -276,7 +276,8 @@ function ShowAccountSettings(variableName) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function HideAccountSettings() {
|
function HideAccountSettings() {
|
||||||
document.getElementById("accountSettingsScreen").style.display = "none";
|
If (document.getElementById("accountSettingsScreen"))
|
||||||
|
document.getElementById("accountSettingsScreen").style.display = "none";
|
||||||
}
|
}
|
||||||
|
|
||||||
function ShowDictionaryDeleteMenu(dictionaryList) {
|
function ShowDictionaryDeleteMenu(dictionaryList) {
|
||||||
|
|
Loading…
Reference in New Issue