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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user