check if moveToPost is defined before parsing n/p hotkeys

This commit is contained in:
Andrew Dolgov 2006-08-13 05:12:33 +01:00
parent b31c23117a
commit e59a2f12de
1 changed files with 6 additions and 2 deletions

View File

@ -203,11 +203,15 @@ function hotkey_handler(e) {
}
if (keycode == 78 || keycode == 40) { // n, down
return h_ctx.moveToPost('next');
if (typeof h_ctx.moveToPost != undefined) {
return h_ctx.moveToPost('next');
}
}
if (keycode == 80 || keycode == 38) { // p, up
return h_ctx.moveToPost('prev');
if (typeof h_ctx.moveToPost != undefined) {
return h_ctx.moveToPost('prev');
}
}
if (typeof localHotkeyHandler != 'undefined') {