summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-25 14:13:52 +0400
committerAndrew Dolgov <[email protected]>2012-12-25 14:13:52 +0400
commitc4f52830528ecd13e8f335d69a0f3b288c2766b3 (patch)
tree1cee923d7d16e6348921c9a0b31b67b985e46b96 /js/tt-rss.js
parent363161024b55974330b4c5cc7b16248509a45d00 (diff)
move to dijit checkboxes in headlines/cdm list
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 348d6bbd6..56f7df65d 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -786,10 +786,10 @@ function hotkey_handler(e) {
if (keycode == 9) { // tab
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;
}