improved UI for checked items to be deleted

This commit is contained in:
Friendika 2011-06-17 22:58:15 -07:00
parent 484b248f73
commit 787f079d13
4 changed files with 20 additions and 7 deletions

View file

@ -287,6 +287,17 @@
});
}
function checkboxhighlight(box) {
if($(box).is(':checked')) {
$(box).addClass('checkeditem');
}
else {
$(box).removeClass('checkeditem');
}
}
/**
* sprintf in javascript
* "{0} and {1}".format('zero','uno');