diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-08-20 01:53:24 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-08-20 01:53:24 +0000 |
commit | 2903acf1f2b2a1dd7dbca14cd5b0ee9b2cf7be5e (patch) | |
tree | 012ebeaf1c41caa588832125e9f504ea7794efc9 /libs/cbi/htdocs | |
parent | a0d353e3327a0b25f55800626a6143127b36de6b (diff) |
libs/cbi: preserve tab state across page reloads
Diffstat (limited to 'libs/cbi/htdocs')
-rw-r--r-- | libs/cbi/htdocs/luci-static/resources/cbi.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/cbi/htdocs/luci-static/resources/cbi.js b/libs/cbi/htdocs/luci-static/resources/cbi.js index 24f929c9b..2e54ff758 100644 --- a/libs/cbi/htdocs/luci-static/resources/cbi.js +++ b/libs/cbi/htdocs/luci-static/resources/cbi.js @@ -235,6 +235,7 @@ function cbi_t_add(section, tab) { function cbi_t_switch(section, tab) { if( cbi_t[section] && cbi_t[section][tab] ) { var o = cbi_t[section][tab]; + var h = document.getElementById('tab.' + section); for( var tid in cbi_t[section] ) { var o2 = cbi_t[section][tid]; if( o.tab.id != o2.tab.id ) { @@ -242,6 +243,7 @@ function cbi_t_switch(section, tab) { o2.container.style.display = 'none'; } else { + if(h) h.value = tab; o2.tab.className = o2.tab.className.replace(/(^| )cbi-tab-disabled( |$)/, " cbi-tab "); o2.container.style.display = 'block'; } |