mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
fix firefox middle click not marking entries
This commit is contained in:
@@ -378,6 +378,13 @@ module.controller('FeedListCtrl', function($scope, $stateParams, $http, $route,
|
||||
$scope.mark(entry, true);
|
||||
}
|
||||
};
|
||||
|
||||
$scope.noop = function(event){
|
||||
if (!event.ctrlKey && event.which != 2) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
}
|
||||
}
|
||||
|
||||
var openNextEntry = function(event) {
|
||||
var entry = null;
|
||||
|
||||
Reference in New Issue
Block a user