prefs: properly recover from attempt to set nonexistant tab on init
This commit is contained in:
parent
64b3069d27
commit
e8375afe40
1
prefs.js
1
prefs.js
|
@ -1333,6 +1333,7 @@ function init_second_stage() {
|
|||
|
||||
try {
|
||||
active_tab = getInitParam("prefs_active_tab");
|
||||
if (!document.getElementById(active_tab+"Tab")) active_tab = "genConfig";
|
||||
if (!active_tab || active_tab == '0') active_tab = "genConfig";
|
||||
|
||||
document.onkeydown = pref_hotkey_handler;
|
||||
|
|
Loading…
Reference in New Issue