Some improvements to image tracks in the repo list view

This commit is contained in:
Joseph Schorr 2015-03-10 11:00:11 -07:00
parent afc8e95e19
commit 3d3c8ca198
4 changed files with 26 additions and 6 deletions

View file

@ -657,7 +657,9 @@ angular.module("core-ui", [])
};
this.checkByFilter = function(filter) {
$scope.controller.checkByFilter(filter);
$scope.controller.checkByFilter(function(tag) {
return filter({'tag': tag});
});
};
}
};
@ -673,7 +675,7 @@ angular.module("core-ui", [])
restrict: 'C',
require: '^corCheckableMenu',
scope: {
'itemFilter': '=itemFilter'
'itemFilter': '&itemFilter'
},
link: function($scope, $element, $attr, parent) {
$scope.parent = parent;