1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 21:21:54 +02:00

fixed *Check all not working on admin_log.php?config* bug

This commit is contained in:
unknown 2012-11-28 23:26:32 +02:00
parent 750b84bfc1
commit bef84e5b27

@ -11,7 +11,21 @@ $(document).ready(function()
$(".e-hideme").hide();
$(".e-expandit").show();
$(".e-spinner").spinner();
//check all
$("#check-all").click(function(){
$(".field-spacer").each( function() {
$(this).children(":checkbox").attr("checked",true);
})
})
$("#uncheck-all").click(function(){
$(".field-spacer").each( function() {
$(this).children(":checkbox").attr("checked",false);
})
})
// default 'toggle'.
$(".e-expandit").click(function () {