1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-15 20:16:21 +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

View File

@ -13,6 +13,20 @@ $(document).ready(function()
$(".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 () {