From dad14b513d3e9bab376d3691043c49a99d6db0a4 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 9 Nov 2010 20:57:23 +0300 Subject: refactor combined mode, code cleanup --- tt-rss.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 9aaa4c52c..63518c154 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1009,14 +1009,14 @@ function hotkey_handler(e) { if (keycode == 78 || keycode == 40) { // n, down if (typeof moveToPost != 'undefined') { moveToPost('next'); - return; + return false; } } if (keycode == 80 || keycode == 38) { // p, up if (typeof moveToPost != 'undefined') { moveToPost('prev'); - return; + return false; } } -- cgit v1.2.3-54-g00ecf