Add UI support for multiple operations on keys

This commit is contained in:
Joseph Schorr 2016-04-27 17:44:44 -04:00 committed by Jimmy Zelinskie
parent 726cb5fe6a
commit a55e92bc95
6 changed files with 283 additions and 22 deletions

View file

@ -674,8 +674,8 @@ angular.module("core-ui", [])
};
this.checkByFilter = function(filter) {
$scope.controller.checkByFilter(function(tag) {
return filter({'tag': tag});
$scope.controller.checkByFilter(function(item) {
return filter({'item': item});
});
};
}