summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-08-01 23:19:31 +0300
committermakkalot <makkalot@gmail.com>2008-08-01 23:19:31 +0300
commitee23ef04ca9eb51893038a9f25cd3c382c0a2100 (patch)
tree38ac87147e107dc37c33d7b71d7f5dcd0d9d54da /funcweb
parent6d073bbf14319bb37a3a892c35a290f59f167c67 (diff)
downloadfunc-ee23ef04ca9eb51893038a9f25cd3c382c0a2100.tar.gz
func-ee23ef04ca9eb51893038a9f25cd3c382c0a2100.tar.xz
func-ee23ef04ca9eb51893038a9f25cd3c382c0a2100.zip
js util file
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/funcweb/static/javascript/utils.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/funcweb/funcweb/static/javascript/utils.js b/funcweb/funcweb/static/javascript/utils.js
new file mode 100644
index 0000000..d06be6c
--- /dev/null
+++ b/funcweb/funcweb/static/javascript/utils.js
@@ -0,0 +1,15 @@
+function checkAll(form_element){
+
+}
+
+function uncheckAll(form_element){
+
+}
+
+function checkController(form_element,check_element){
+ if (check_element.checked == 1){
+ checkAll(form_element);
+ }
+ else
+ uncheckAll(form_element);
+}