summaryrefslogtreecommitdiffstats
path: root/js/app/directives/itemshortcuts.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/app/directives/itemshortcuts.coffee')
-rw-r--r--js/app/directives/itemshortcuts.coffee5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/app/directives/itemshortcuts.coffee b/js/app/directives/itemshortcuts.coffee
index 3ddcda37c..9045ea949 100644
--- a/js/app/directives/itemshortcuts.coffee
+++ b/js/app/directives/itemshortcuts.coffee
@@ -106,8 +106,11 @@ angular.module('News').directive 'itemShortcuts', ['$window', ($window) ->
# s or i or l
else if e.keyCode == 73 or e.keyCode == 83 or e.keyCode == 76
starCurrentItem(scrollArea)
-
+ # h
+ else if e.keyCode == 72
+ starCurrentItem(scrollArea)
+ jumpToNextItem(scrollArea)
] \ No newline at end of file