forked from Archives/Athou_commafeed
allow category selection by clicking anywhere on the row
This commit is contained in:
@@ -186,7 +186,9 @@ module.directive('category', [ function() {
|
||||
});
|
||||
};
|
||||
|
||||
$scope.toggleCategory = function(category) {
|
||||
$scope.toggleCategory = function(category, event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
category.expanded = !category.expanded;
|
||||
if (category.id == 'all') {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user