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:
@@ -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){
|
||||
|
Reference in New Issue
Block a user