mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 08:09:41 +00:00
Firewall - categories - check state before select (#5538)
Dont select disabled checkboxes
This commit is contained in:
parent
fc51b1541a
commit
d387c59f5e
@ -263,7 +263,7 @@ $( document ).ready(function() {
|
||||
|
||||
// select All
|
||||
$("#selectAll").click(function(){
|
||||
$(".rule_select").prop("checked", $(this).prop("checked"));
|
||||
$(".rule_select:not(:disabled)").prop("checked", $(this).prop("checked"));
|
||||
});
|
||||
|
||||
// move category block
|
||||
|
||||
@ -211,7 +211,7 @@ include("head.inc");
|
||||
});
|
||||
// select All
|
||||
$("#selectAll").click(function(){
|
||||
$(".rule_select").prop("checked", $(this).prop("checked"));
|
||||
$(".rule_select:not(:disabled)").prop("checked", $(this).prop("checked"));
|
||||
});
|
||||
|
||||
// watch scroll position and set to last known on page load
|
||||
|
||||
@ -161,7 +161,7 @@ include("head.inc");
|
||||
|
||||
// select All
|
||||
$("#selectAll").click(function(){
|
||||
$(".rule_select").prop("checked", $(this).prop("checked"));
|
||||
$(".rule_select:not(:disabled)").prop("checked", $(this).prop("checked"));
|
||||
});
|
||||
|
||||
// move category block
|
||||
|
||||
@ -228,7 +228,7 @@ include("head.inc");
|
||||
|
||||
// select All
|
||||
$("#selectAll").click(function(){
|
||||
$(".rule_select").prop("checked", $(this).prop("checked"));
|
||||
$(".rule_select:not(:disabled)").prop("checked", $(this).prop("checked"));
|
||||
});
|
||||
|
||||
// watch scroll position and set to last known on page load
|
||||
|
||||
@ -492,7 +492,7 @@ $( document ).ready(function() {
|
||||
|
||||
// select All
|
||||
$("#selectAll").click(function(){
|
||||
$(".rule_select").prop("checked", $(this).prop("checked"));
|
||||
$(".rule_select:not(:disabled)").prop("checked", $(this).prop("checked"));
|
||||
});
|
||||
|
||||
// move category block
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user