mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01: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