]> git.wh0rd.org - tt-rss.git/blobdiff - js/tt-rss.js
move to dijit checkboxes in headlines/cdm list
[tt-rss.git] / js / tt-rss.js
index 348d6bbd6a360e631bedde021ad75c845de0e7d6..56f7df65d5293427cc808cb550da49fae299fac4 100644 (file)
@@ -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;
                                        }