mirror of
https://github.com/searxng/searxng.git
synced 2025-08-05 11:26:43 +02:00
[mod] oscar: move compiled files to the src directory
This commit is contained in:
parent
eda3b513ac
commit
c7133efb12
35 changed files with 12 additions and 12 deletions
10
searx/static/themes/oscar/src/js/toggleall.js
Normal file
10
searx/static/themes/oscar/src/js/toggleall.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
$(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;});
|
||||
});
|
||||
});
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue