Merge branch 'master' of bitbucket.org:yackob03/quay

This commit is contained in:
yackob03 2013-10-16 22:37:34 -04:00
commit 6ae725eace
2 changed files with 35 additions and 25 deletions

View file

@ -314,7 +314,7 @@ function RepoCtrl($scope, Restangular, $routeParams, $rootScope) {
var imageFetch = Restangular.one('repository/' + namespace + '/' + name + '/image/');
imageFetch.get().then(function(resp) {
$scope.imageHistory = resp.images;
$scope.tree = new ImageHistoryTree(namespace, name, resp.images, $scope.currentTag,
$scope.tree = new ImageHistoryTree(namespace, name, resp.images,
$scope.getCommentFirstLine, $scope.getTimeSince);
$scope.tree.draw('image-history-container');