summaryrefslogtreecommitdiff
path: root/searx/static/themes/oscar/src/js/toggleall.js
diff options
context:
space:
mode:
Diffstat (limited to 'searx/static/themes/oscar/src/js/toggleall.js')
-rw-r--r--searx/static/themes/oscar/src/js/toggleall.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/searx/static/themes/oscar/src/js/toggleall.js b/searx/static/themes/oscar/src/js/toggleall.js
deleted file mode 100644
index 69acb9d7..00000000
--- a/searx/static/themes/oscar/src/js/toggleall.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
- * @license
- * (C) Copyright Contributors to the SearXNG project.
- * (C) Copyright Contributors to the searx project (2014 - 2021).
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
-
-$(document).ready(function(){
- $("#allow-all-engines").click(function() {
- $(".onoffswitch-checkbox").each(function() { this.checked = false;});
- });
-
- $("#disable-all-engines").click(function() {
- $(".onoffswitch-checkbox").each(function() { this.checked = true;});
- });
-});
-