From: Andrew Dolgov Date: Tue, 20 Jan 2009 17:59:01 +0000 (+0100) Subject: actions menu tweaks X-Git-Tag: 1.3.0~12 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ee4ee3e3fe82c84e4213af59476eead4562adbe6;p=tt-rss.git actions menu tweaks --- diff --git a/feedlist.js b/feedlist.js index 177f057c..0d458933 100644 --- a/feedlist.js +++ b/feedlist.js @@ -554,7 +554,7 @@ function mouse_move_handler(e) { } function enable_selection(b) { - disable_selection = !b; + selection_disabled = !b; } function enable_resize(b) { @@ -589,7 +589,7 @@ function mouse_up_handler(e) { try { mouse_is_down = false; - if (!disable_selection) { + if (!selection_disabled) { document.onselectstart = null; var e = document.getElementById("headlineActionsBody"); if (e) Element.hide(e); diff --git a/tt-rss.php b/tt-rss.php index 66e59bfd..35b63dfe 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -150,26 +150,26 @@ window.onload = init;