diff --git a/feedlist.js b/feedlist.js index 177f057cd..0d4589331 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 66e59bfd7..35b63dfea 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -150,26 +150,26 @@ window.onload = init;