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

move to dijit checkboxes in headlines/cdm list

This commit is contained in:
Andrew Dolgov
2012-12-25 14:13:52 +04:00
parent 363161024b
commit c4f5283052
5 changed files with 21 additions and 23 deletions

View 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;
}