summaryrefslogtreecommitdiffstats
path: root/static/functions/notifications.js
diff options
context:
space:
mode:
authorGit <git@what.cd>2013-08-11 08:00:48 +0000
committerGit <git@what.cd>2013-08-11 08:00:48 +0000
commitc9a8095b5a0865493094e42f2eeaf5be257f0ae7 (patch)
tree74a171315c4d41610cd16e31ff33131e89e018e9 /static/functions/notifications.js
parent21fe4e5534115f8f5f45b5d4c39901e4b12ed2ea (diff)
downloadGazelle-c9a8095b5a0865493094e42f2eeaf5be257f0ae7.zip
Gazelle-c9a8095b5a0865493094e42f2eeaf5be257f0ae7.tar.gz
Gazelle-c9a8095b5a0865493094e42f2eeaf5be257f0ae7.tar.bz2
Empty commit
Diffstat (limited to 'static/functions/notifications.js')
-rw-r--r--static/functions/notifications.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/static/functions/notifications.js b/static/functions/notifications.js
index b05a2df..7c8b826 100644
--- a/static/functions/notifications.js
+++ b/static/functions/notifications.js
@@ -23,28 +23,3 @@ function clearSelected(filterId) {
}
});
}
-
-function toggleBoxes(filterId, value) {
- var filterForm = $('#notificationform_' + filterId);
- var checkBoxes = $('.notify_box_' + filterId, filterForm);
- for (var i = checkBoxes.length - 1; i >= 0; i--) {
- $(checkBoxes[i]).prop('checked', value);
- }
-}
-
-/* Remove these */
-function GroupClear(form) {
- for (var i = 0; i < form.elements.length; i++ ) {
- if (form.elements[i].type == 'checkbox' && form.elements[i].name != 'toggle') {
- if (form.elements[i].checked == true) {
- Clear(form.elements[i].value);
- }
- }
- }
-}
-
-function SuperGroupClear() {
- for (var i = 0; i < document.forms.length; i++ ) {
- GroupClear(document.forms[i]);
- }
-}