From ac162cbe5ad6816fd5e9084e27eb3aa772e19e1f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 16 May 2007 04:36:40 +0100 Subject: correct headlines scroll position in moveToPost() --- functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functions.js') diff --git a/functions.js b/functions.js index f922183cc..eea2515a0 100644 --- a/functions.js +++ b/functions.js @@ -252,13 +252,13 @@ function hotkey_handler(e) { if (new_feed) viewfeed(new_feed, ''); } - if (!is_safari() && (keycode == 78 || keycode == 40)) { // n, down + if (keycode == 78 || keycode == 40) { // n, down if (typeof moveToPost != 'undefined') { return moveToPost('next'); } } - if (!is_safari() && (keycode == 80 || keycode == 38)) { // p, up + if (keycode == 80 || keycode == 38) { // p, up if (typeof moveToPost != 'undefined') { return moveToPost('prev'); } -- cgit v1.2.3-54-g00ecf