1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 00:01:28 +00:00

CDM and infinite scrolling tweaks

This commit is contained in:
Andrew Dolgov
2007-08-09 09:36:56 +01:00
parent e2ccbfab0a
commit a219fec54d
3 changed files with 20 additions and 2 deletions

View File

@@ -335,6 +335,21 @@ function hotkey_handler(e) {
}
}
if (keycode == 84) { // t
var id = getActiveArticleId();
if (id) {
var cb = document.getElementById("RCHK-" + id);
if (cb) {
cb.checked = !cb.checked;
toggleSelectRowById(cb, "RROW-" + id);
}
}
}
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);