diff --git a/app/assets/javascripts/app/controllers/widget/online_notification.coffee b/app/assets/javascripts/app/controllers/widget/online_notification.coffee index 9c512a0f1..26f274adb 100644 --- a/app/assets/javascripts/app/controllers/widget/online_notification.coffee +++ b/app/assets/javascripts/app/controllers/widget/online_notification.coffee @@ -65,9 +65,11 @@ class App.OnlineNotificationWidget extends App.Controller @hide() return else if e.keyCode is 38 # up + e.preventDefault() @nudge(e, -1) return else if e.keyCode is 40 # down + e.preventDefault() @nudge(e, 1) return else if e.keyCode is 13 # enter