From ee4ee3e3fe82c84e4213af59476eead4562adbe6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 20 Jan 2009 18:59:01 +0100 Subject: [PATCH] actions menu tweaks --- feedlist.js | 4 ++-- tt-rss.php | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 14 deletions(-) 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;
-- 2.39.2