diff --git a/src/main/webapp/js/controllers.js b/src/main/webapp/js/controllers.js index e0dbb866..35c63419 100644 --- a/src/main/webapp/js/controllers.js +++ b/src/main/webapp/js/controllers.js @@ -933,11 +933,14 @@ function($scope, $stateParams, $http, $route, $window, EntryService, SettingsSer }); Mousetrap.bind('v', function(e) { if ($scope.current) { + $scope.mark($scope.current, true); window.open($scope.current.url); } }); Mousetrap.bind('b', function(e) { if ($scope.current) { + $scope.mark($scope.current, true); + var url = $scope.current.url; var a = document.createElement('a'); a.href = url;