1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 16:45:55 +00:00

headlines buffer: remove dijit-based RCHK elements

This commit is contained in:
Andrew Dolgov
2013-02-28 15:04:33 +04:00
parent 831408f0e8
commit f7945c99d0
4 changed files with 30 additions and 29 deletions

View File

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