summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/feedlist.js b/feedlist.js
index 93861bbd8..7de5559b5 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -621,7 +621,7 @@ function mouse_down_handler(e) {
try {
/* do not prevent right click */
- if (e.button && e.button == 2) return;
+ if (e && e.button && e.button == 2) return;
if (resize_enabled) {
mouse_is_down = true;
@@ -637,7 +637,7 @@ function mouse_down_handler(e) {
}
} catch (e) {
- exception_error("mouse_move_handler", e);
+ exception_error("mouse_down_handler", e);
}
}
@@ -656,7 +656,7 @@ function mouse_up_handler(e) {
}
} catch (e) {
- exception_error("mouse_move_handler", e);
+ exception_error("mouse_up_handler", e);
}
}