Add selection of images by railroad track

This commit is contained in:
Joseph Schorr 2015-03-18 12:06:47 -04:00
parent e0f11f46e5
commit e58144eec5
3 changed files with 8 additions and 1 deletions

View file

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