1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-27 14:11:29 +00:00

make 'v' hotkey work in CDM mode

This commit is contained in:
Andrew Dolgov
2007-08-09 07:56:11 +01:00
parent 8a5b4579fa
commit e4914b6275
5 changed files with 33 additions and 1 deletions

View File

@@ -921,3 +921,19 @@ function cache_invalidate(id) {
function getActiveArticleId() {
return active_post_id;
}
function cdmMouseIn(elem) {
try {
if (elem.id && elem.id.match("RROW-")) {
var id = elem.id.replace("RROW-", "");
active_post_id = id;
}
} catch (e) {
exception_error("cdmMouseIn", e);
}
}
function cdmMouseOut(elem) {
active_post_id = false;
}