From 93ff578ac8f0cd4772285a6ea983cf02cc9be620 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Tue, 27 May 2008 09:33:52 +0000 Subject: * 3rd Package reorgnaisation * Moved core, web, cbi to libs * Refactored OpenWRT Makefile to separate Libraries, Webinterface Components, Freifunk packages --- applications/cbi/root/www/resources/cbi.js | 42 ------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 applications/cbi/root/www/resources/cbi.js (limited to 'applications/cbi/root/www/resources/cbi.js') diff --git a/applications/cbi/root/www/resources/cbi.js b/applications/cbi/root/www/resources/cbi.js deleted file mode 100644 index a3a47aa45b..0000000000 --- a/applications/cbi/root/www/resources/cbi.js +++ /dev/null @@ -1,42 +0,0 @@ -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