allow category selection by clicking anywhere on the row

This commit is contained in:
Athou
2013-05-02 12:11:46 +02:00
parent 12bd58c484
commit b411528ac7
2 changed files with 9 additions and 7 deletions

View File

@@ -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;