summaryrefslogtreecommitdiff
path: root/searx/static/themes/oscar/src/js/toggleall.js
blob: b6c484e3ea711717b220fa145803d03686c054e8 (plain)
1
2
3
4
5
6
7
8
9
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;});
    });
});