diff --git a/src/main/webapp/js/controllers.js b/src/main/webapp/js/controllers.js index 417341c7..9f4748c9 100644 --- a/src/main/webapp/js/controllers.js +++ b/src/main/webapp/js/controllers.js @@ -219,6 +219,12 @@ module.controller('FeedListCtrl', function($scope, $routeParams, $http, $route, openNextEntry(e); }) }); + + Mousetrap.bind('shift+space', function(e) { + $scope.$apply(function() { + openPreviousEntry(e); + }) + }); Mousetrap.bind('k', function(e) { $scope.$apply(function() { openPreviousEntry(e);