1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 03:10:50 +02:00

Fixes #4171 - checkbox visibility issue.

This commit is contained in:
Cameron
2020-05-18 11:04:51 -07:00
parent 41056cb12a
commit 80c5bd7582
3 changed files with 20 additions and 2 deletions

View File

@@ -777,6 +777,21 @@ $(document).ready(function()
// $(selector).removeAttr("checked");
}
});
$("ul.col-selection input[type='checkbox']").click(function(evt){
if(this.checked)
{
$(this).closest("label").addClass( "active", 0 );
// $(this).closest("tr.even").switchClass( "even", "highlight-even", 50 );
}
else
{
$(this).closest("label").removeClass( "active", 0 );
}
});
// highlight checked row
$(".adminlist input[type='checkbox']").click(function(evt){