summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 9814718f0..e47d5878a 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -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;
}