1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 18:41:29 +00:00

debug mode tweaks, remove mouse_handler()

This commit is contained in:
Andrew Dolgov
2008-05-19 12:28:20 +01:00
parent 19d7bfcd1d
commit 8836613c43
8 changed files with 12 additions and 53 deletions

View File

@@ -328,7 +328,6 @@ function feedlist_init() {
hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
document.onkeydown = hotkey_handler;
document.onmousedown = mouse_handler;
setTimeout("timeout()", 0);
/* debug("about to remove splash, OMG!");
@@ -468,23 +467,3 @@ function remove_splash() {
debug("removed splash!");
}
}
function feedMouseIn(id) {
try {
if (feed_under_pointer != id) {
feed_under_pointer = id;
}
} catch (e) {
exception_error("feedMouseIn", e);
}
}
function feedMouseOut(id) {
try {
feed_under_pointer = undefined;
} catch (e) {
exception_error("feedMouseOut", e);
}
}