Skip to content

Commit

Permalink
Bug 1089737 - Tweak next/prev shortcut comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tojon committed Feb 23, 2015
1 parent 5e4d238 commit 40b963b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/js/controllers/main.js
Expand Up @@ -76,12 +76,12 @@ treeherder.controller('MainCtrl', [
$scope.$evalAsync($scope.toggleInProgress());
});

// Shortcut: select previous job (upcoming feature, PR326)
// Shortcut: select previous job
Mousetrap.bind('left', function() {
$rootScope.$emit(thEvents.changeSelection,'previous');
});

// Shortcut: select next job (upcoming feature, PR326)
// Shortcut: select next job
Mousetrap.bind('right', function() {
$rootScope.$emit(thEvents.changeSelection,'next');
});
Expand Down

0 comments on commit 40b963b

Please sign in to comment.