summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-09 20:57:23 +0300
committerAndrew Dolgov <[email protected]>2010-11-09 20:57:23 +0300
commitdad14b513d3e9bab376d3691043c49a99d6db0a4 (patch)
treeee3d5d2cb44a041af05ea378763d2c3788a37ef5 /tt-rss.js
parent24e2bb3a9254f8f4f3ea72ec27a189dbca5f891d (diff)
refactor combined mode, code cleanup
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
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;
}
}