Merge branch 'master' of https://bitbucket.org/yackob03/quay
This commit is contained in:
commit
a53a0a44a9
1 changed files with 3 additions and 2 deletions
|
@ -477,10 +477,11 @@ function RepoCtrl($scope, Restangular, ApiService, $routeParams, $rootScope, $lo
|
||||||
$scope.setTag($routeParams.tag);
|
$scope.setTag($routeParams.tag);
|
||||||
|
|
||||||
// Set the title of the page.
|
// Set the title of the page.
|
||||||
$rootScope.title = namespace + '/' + name;
|
var qualifiedRepoName = namespace + '/' + name;
|
||||||
|
$rootScope.title = qualifiedRepoName;
|
||||||
var kind = repo.is_public ? 'public' : 'private';
|
var kind = repo.is_public ? 'public' : 'private';
|
||||||
$rootScope.description = jQuery(getFirstTextLine(repo.description)).text() ||
|
$rootScope.description = jQuery(getFirstTextLine(repo.description)).text() ||
|
||||||
'View of a ' + kind + ' docker repository on Quay';
|
'Visualization of images and tags for ' + kind + ' Docker repository: ' + qualifiedRepoName;
|
||||||
|
|
||||||
// If the repository is marked as building, start monitoring it for changes.
|
// If the repository is marked as building, start monitoring it for changes.
|
||||||
if (repo.is_building) {
|
if (repo.is_building) {
|
||||||
|
|
Reference in a new issue