Add selection of images by railroad track
This commit is contained in:
parent
e0f11f46e5
commit
e58144eec5
3 changed files with 8 additions and 1 deletions
|
@ -207,6 +207,12 @@ angular.module('quay').directive('repoPanelTags', function () {
|
|||
$scope.setTab = function(tab) {
|
||||
$location.search('tab', tab);
|
||||
};
|
||||
|
||||
$scope.selectTrack = function(it) {
|
||||
$scope.checkedTags.checkByFilter(function(tag) {
|
||||
return $scope.imageIDFilter(it.image_id, tag);
|
||||
});
|
||||
};
|
||||
}
|
||||
};
|
||||
return directiveDefinitionObject;
|
||||
|
|
Reference in a new issue