mirror of
https://github.com/friendica/friendica
synced 2025-04-21 15:50:13 +00:00
improved UI for checked items to be deleted
This commit is contained in:
parent
484b248f73
commit
787f079d13
4 changed files with 20 additions and 7 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue