prefs: properly recover from attempt to set nonexistant tab on init

This commit is contained in:
Andrew Dolgov 2009-01-24 06:26:00 +01:00
parent 64b3069d27
commit e8375afe40
1 changed files with 1 additions and 0 deletions

View File

@ -1333,6 +1333,7 @@ function init_second_stage() {
try { try {
active_tab = getInitParam("prefs_active_tab"); active_tab = getInitParam("prefs_active_tab");
if (!document.getElementById(active_tab+"Tab")) active_tab = "genConfig";
if (!active_tab || active_tab == '0') active_tab = "genConfig"; if (!active_tab || active_tab == '0') active_tab = "genConfig";
document.onkeydown = pref_hotkey_handler; document.onkeydown = pref_hotkey_handler;