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
1 changed files with 2 additions and 1 deletions

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