summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-16 04:36:40 +0100
committerAndrew Dolgov <[email protected]>2007-05-16 04:36:40 +0100
commitac162cbe5ad6816fd5e9084e27eb3aa772e19e1f (patch)
treeda595a211d6527c302bfa472489f694adc9984be /functions.js
parentb07b61da019a85b354ffc2941e94cf3374968c41 (diff)
correct headlines scroll position in moveToPost()
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js4
1 files changed, 2 insertions, 2 deletions
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');
}