diff options
author | Steven Barth <steven@midlink.org> | 2008-05-27 08:32:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-27 08:32:10 +0000 |
commit | 30c8b259e1b7012f7c16c1ee5aeb1997e44dcbdc (patch) | |
tree | 12d1195e52a82165ea44129a7ab53126a7b2b7c9 /applications/cbi/root | |
parent | b8124f18f88fe11158eb122a1e362cfbd512cf4f (diff) |
* Separated CBI from LuCI Web
* Updated OpenWRT-Makefile
Diffstat (limited to 'applications/cbi/root')
-rw-r--r-- | applications/cbi/root/www/resources/cbi.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/applications/cbi/root/www/resources/cbi.js b/applications/cbi/root/www/resources/cbi.js new file mode 100644 index 0000000000..a3a47aa45b --- /dev/null +++ b/applications/cbi/root/www/resources/cbi.js @@ -0,0 +1,42 @@ +var cbi_d = {}; + +function cbi_d_add(field, target, value) { + if (!cbi_d[target]) { + cbi_d[target] = {}; + } + if (!cbi_d[target][value]) { + cbi_d[target][value] = []; + } + cbi_d[target][value].push(field); +} + +function cbi_d_update(target) { + if (!cbi_d[target]) { + return; + } + + for (var x in cbi_d[target]) { + for (var i=0; i<cbi_d[target][x].length; i++) { + var y = document.getElementById(cbi_d[target][x][i]) + y.style.display = "none"; + } + } + + var t = document.getElementById(target); + if (t && t.value && cbi_d[target][t.value]) { + for (var i=0; i<cbi_d[target][t.value].length; i++) { + var y = document.getElementById(cbi_d[target][t.value][i]) + if (!y.value) { + y.style.display = "table-row"; + } else { + y.style.display = "block"; + } + } + } +} + +function cbi_d_init() { + for (var x in cbi_d) { + cbi_d_update(x); + } +}
\ No newline at end of file |