add disable all and allow all engines button to Oscar preferences

This commit is contained in:
Noémi Ványi 2020-05-31 22:36:09 +02:00
parent d38952c133
commit d7d89369cb
4 changed files with 30 additions and 2 deletions

View 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;});
});
});