mirror of
https://github.com/searxng/searxng.git
synced 2024-11-28 05:41:01 +00:00
10 lines
303 B
JavaScript
10 lines
303 B
JavaScript
$(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;});
|
|
});
|
|
});
|
|
|