mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
add disable all and allow all engines button to Oscar preferences
This commit is contained in:
parent
d38952c133
commit
d7d89369cb
@ -357,3 +357,13 @@ $(document).ready(function(){
|
|||||||
$( this ).off( event );
|
$( this ).off( event );
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
;$(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;});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
4
searx/static/themes/oscar/js/searx.min.js
vendored
4
searx/static/themes/oscar/js/searx.min.js
vendored
File diff suppressed because one or more lines are too long
10
searx/static/themes/oscar/js/searx_src/toggleall.js
Normal file
10
searx/static/themes/oscar/js/searx_src/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;});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
@ -155,6 +155,14 @@
|
|||||||
|
|
||||||
<!-- Tab panes -->
|
<!-- Tab panes -->
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
|
|
||||||
|
<div class="hide_if_nojs">
|
||||||
|
<p class="text-{% if rtl %}left{% else %}right{% endif %}">
|
||||||
|
<button type="button" class="btn btn-default btn-success" id="allow-all-engines">{{ _("Allow all") }}</button>
|
||||||
|
<button type="button" class="btn btn-default btn-danger" id="disable-all-engines">{{ _("Disable all") }}</button>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% for categ in all_categories %}
|
{% for categ in all_categories %}
|
||||||
<noscript><label>{{ _(categ) }}</label>
|
<noscript><label>{{ _(categ) }}</label>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
Loading…
Reference in New Issue
Block a user