summaryrefslogtreecommitdiff
path: root/public/css
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-08-23 15:59:18 +0200
committerPhilip Häusler <msquare@notrademark.de>2014-08-23 15:59:18 +0200
commit6bfa410f907b0488a74206ec6c28fd52730c21af (patch)
treea377e8be98138d56ea1275a4f3bb0e4390cd795a /public/css
parent66f166399cd893d47423abb9537a01dde6aaff5d (diff)
add moment js
Diffstat (limited to 'public/css')
-rw-r--r--public/css/forms.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/public/css/forms.js b/public/css/forms.js
deleted file mode 100644
index 630d8c25..00000000
--- a/public/css/forms.js
+++ /dev/null
@@ -1,17 +0,0 @@
-function check_all(id) {
- var obj = document.getElementById(id);
- var boxes = obj.getElementsByTagName("input");
- for(var i = 0; i < boxes.length; i++) {
- if(boxes[i].type == "checkbox" && !boxes[i].disabled)
- boxes[i].checked = true;
- }
-}
-
-function uncheck_all(id) {
- var obj = document.getElementById(id);
- var boxes = obj.getElementsByTagName("input");
- for(var i = 0; i < boxes.length; i++) {
- if(boxes[i].type == "checkbox")
- boxes[i].checked = false;
- }
-}