summaryrefslogtreecommitdiff
path: root/installer/client.js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-02-25 23:03:54 +0000
committerthomascube <thomas@roundcube.net>2008-02-25 23:03:54 +0000
commitc5042d468e605a7ec9bb6883ba721c8fd222b4ec (patch)
tree739a31c581dfa6f274b93b0d5582242cddc3582c /installer/client.js
parente8a89e8f4c32e19e46479f527c5392d18b84c62f (diff)
More installer stuff
Diffstat (limited to 'installer/client.js')
-rw-r--r--installer/client.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/installer/client.js b/installer/client.js
new file mode 100644
index 000000000..3121b2693
--- /dev/null
+++ b/installer/client.js
@@ -0,0 +1,36 @@
+
+function toggleblock(id, link)
+{
+ var block = document.getElementById(id);
+
+ return false;
+}
+
+
+function addhostfield()
+{
+ var container = document.getElementById('defaulthostlist');
+ var row = document.createElement('div');
+ var input = document.createElement('input');
+ var link = document.createElement('a');
+
+ input.name = '_default_host[]';
+ input.size = '30';
+ link.href = '#';
+ link.onclick = function() { removehostfield(this.parentNode); return false };
+ link.className = 'removelink';
+ link.innerHTML = 'remove';
+
+ row.appendChild(input);
+ row.appendChild(link);
+ container.appendChild(row);
+}
+
+
+function removehostfield(row)
+{
+ var container = document.getElementById('defaulthostlist');
+ container.removeChild(row);
+}
+
+