1
0
Fork 0
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:
Robbie Antenesse 2015-12-13 17:01:26 -08:00
parent d33229e472
commit 6b7eebe9f3

View file

@ -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) {