1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

Revert "headlines buffer: remove dijit-based RCHK elements"

This reverts commit f7945c99d0.
This commit is contained in:
Andrew Dolgov
2013-02-28 15:48:09 +04:00
parent f7945c99d0
commit 524de8dcf6
4 changed files with 29 additions and 30 deletions

View File

@@ -737,9 +737,9 @@ function hotkey_handler(e) {
case "select_article_cursor":
var id = getArticleUnderPointer();
if (id) {
var cb = $("RCHK-" + id)
var cb = dijit.byId("RCHK-" + id);
if (cb) {
cb.checked = !cb.checked;
cb.attr("checked", !cb.attr("checked"));
toggleSelectRowById(cb, "RROW-" + id);
return false;
}