mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-04-23 03:42:59 +02:00
Fix forced hiding if logged out.
This commit is contained in:
parent
d33229e472
commit
6b7eebe9f3
1 changed files with 2 additions and 1 deletions
3
js/ui.js
3
js/ui.js
|
@ -276,7 +276,8 @@ function ShowAccountSettings(variableName) {
|
|||
}
|
||||
|
||||
function HideAccountSettings() {
|
||||
document.getElementById("accountSettingsScreen").style.display = "none";
|
||||
If (document.getElementById("accountSettingsScreen"))
|
||||
document.getElementById("accountSettingsScreen").style.display = "none";
|
||||
}
|
||||
|
||||
function ShowDictionaryDeleteMenu(dictionaryList) {
|
||||
|
|
Loading…
Add table
Reference in a new issue