Some improvements to image tracks in the repo list view
This commit is contained in:
parent
afc8e95e19
commit
3d3c8ca198
4 changed files with 26 additions and 6 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue