summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-19 12:28:20 +0100
committerAndrew Dolgov <[email protected]>2008-05-19 12:28:20 +0100
commit8836613c437e5ff3f0bc86cb1754756a1b7ba6cb (patch)
treeb824dfd80b302b88696809a383d47c66aee23af7 /feedlist.js
parent19d7bfcd1dd95d121ba30db21e068d200132b97d (diff)
debug mode tweaks, remove mouse_handler()
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/feedlist.js b/feedlist.js
index 62bfadb5a..0020de179 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -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);
- }
-}
-