From 8117c5ead9e860d8928ca3d11fd64b56a36f9304 Mon Sep 17 00:00:00 2001 From: Joseph Schorr <jschorr@gmail.com> Date: Wed, 21 May 2014 14:45:54 -0400 Subject: [PATCH] - Always show the tour link in the header - Have organizations link to the tour when a user is not part of an org --- static/directives/header-bar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/directives/header-bar.html b/static/directives/header-bar.html index 1f8ef330b..89959e2da 100644 --- a/static/directives/header-bar.html +++ b/static/directives/header-bar.html @@ -11,12 +11,12 @@ <!-- Collapsable stuff --> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav navbar-links"> - <li ng-if="user.anonymous"><a ng-href="/tour/" target="{{ appLinkTarget() }}">Tour</a></li> + <li><a ng-href="/tour/" target="{{ appLinkTarget() }}">Tour</a></li> <li><a ng-href="/repository/" target="{{ appLinkTarget() }}">Repositories</a></li> <li><a href="http://docs.quay.io/" target="_blank">Docs</a></li> <li><a ng-href="/tutorial/" target="{{ appLinkTarget() }}">Tutorial</a></li> <li quay-require="['BILLING']"><a ng-href="/plans/" target="{{ appLinkTarget() }}">Pricing</a></li> - <li><a ng-href="/organizations/" target="{{ appLinkTarget() }}">Organizations</a></li> + <li><a ng-href="{{ user.organizations.length ? '/organizations/' : '/tour/organizations/' }}" target="{{ appLinkTarget() }}">Organizations</a></li> </ul>