]> git.wh0rd.org - tt-rss.git/commitdiff
enable_resize: do not prevent right click in onmousedown
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 4 Dec 2008 06:06:48 +0000 (07:06 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 4 Dec 2008 06:06:48 +0000 (07:06 +0100)
feedlist.js

index ff4ab7c5afb298851746f2fc2b74d70cc111a291..5a279d8cf13106f444b7b19f8800470212b16025 100644 (file)
@@ -554,6 +554,10 @@ function enable_resize(b) {
 
 function mouse_down_handler(e) {
        try {
+
+               /* do not prevent right click */
+               if (e.button && e.button == 2) return;
+
                if (resize_enabled) { 
                        mouse_is_down = true;
                        mouse_x = 0;