Add new global nav header

Fixes #1151
This commit is contained in:
Joseph Schorr 2016-01-20 18:03:21 -05:00
parent 3fdadb51b7
commit 8318546447
8 changed files with 233 additions and 18 deletions

View file

@ -52,6 +52,7 @@ angular.module('quay').directive('headerBar', function () {
};
$scope.Config = Config;
$scope.Features = Features;
$scope.notificationService = NotificationService;
$scope.searchingAllowed = false;
$scope.searchVisible = false;
@ -161,7 +162,7 @@ angular.module('quay').directive('headerBar', function () {
$scope.getEnterpriseLogo = function() {
if (!Config.ENTERPRISE_LOGO_URL) {
if (Features.BILLING) {
return '/static/img/QuayByCoreOS_horizontal_color.svg';
return '/static/img/quay-horizontal-whiteblue-nobackground.svg';
} else {
return '/static/img/QuayEnterprise_horizontal_color.svg'
}