]> git.wh0rd.org - tt-rss.git/blobdiff - feedlist.js
debug mode tweaks, remove mouse_handler()
[tt-rss.git] / feedlist.js
index 62bfadb5a8ab98fb6d27049e10bab98accb51451..0020de1795da8a0e3220c3e243bbf0eac2cffb16 100644 (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);
-       }
-}
-