1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 08:15:55 +00:00

add a %d articles selected element

This commit is contained in:
Andrew Dolgov
2013-04-15 13:16:14 +04:00
parent 884f2aee91
commit e43a9c4a01
4 changed files with 34 additions and 0 deletions

View File

@@ -368,6 +368,9 @@ function toggleSelectRow2(sender, row, is_cdm) {
row.addClassName('Selected');
else
row.removeClassName('Selected');
if (typeof updateSelectedPrompt != undefined)
updateSelectedPrompt();
}
@@ -379,6 +382,9 @@ function toggleSelectRow(sender, row) {
row.addClassName('Selected');
else
row.removeClassName('Selected');
if (typeof updateSelectedPrompt != undefined)
updateSelectedPrompt();
}
function checkboxToggleElement(elem, id) {