Show docs link on topbar on enterprise
This commit is contained in:
parent
9b0d98234e
commit
bc53d98b2a
|
@ -10,7 +10,7 @@
|
|||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if config.pages_endpoint}}
|
||||
{{#if config.sidebar_support_box}}
|
||||
{{view templateName="layouts/support"}}
|
||||
{{/if}}
|
||||
|
||||
|
|
|
@ -8,14 +8,16 @@
|
|||
<li class="home">
|
||||
{{#link-to "main"}}Home{{/link-to}}
|
||||
</li>
|
||||
{{#unless config.enterprise}}
|
||||
{{#if config.enterprise}}
|
||||
<li><a href="http://docs.travis-ci.com">Docs</a></li>
|
||||
{{else}}
|
||||
<li>
|
||||
<a href="http://blog.travis-ci.com">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://traviscistatus.com">Status</a>
|
||||
</li>
|
||||
{{/unless}}
|
||||
{{/if}}
|
||||
{{#unless config.pro}}
|
||||
<li class="menu community">
|
||||
<p class="handle">
|
||||
|
|
|
@ -76,6 +76,12 @@ billing_endpoint = $('meta[rel="travis.billing_endpoint"]').attr('href')
|
|||
customer_io_site_id = $('meta[name="travis.customer_io_site_id"]').attr('value')
|
||||
setupCustomerio(customer_io_site_id) if customer_io_site_id
|
||||
|
||||
enterprise = $('meta[name="travis.enterprise"]').attr('value') == 'true'
|
||||
|
||||
# for now I set pro to true also for enterprise, but it should be changed
|
||||
# to allow more granular config later
|
||||
pro = $('meta[name="travis.pro"]').attr('value') == 'true' || enterprise
|
||||
|
||||
$.extend Travis,
|
||||
run: ->
|
||||
Travis.advanceReadiness() # bc, remove once merged to master
|
||||
|
@ -94,10 +100,9 @@ $.extend Travis,
|
|||
show_repos_hint: 'private'
|
||||
avatar_default_url: 'https://travis-ci.org/images/ui/default-avatar.png'
|
||||
pusher_log_fallback: $('meta[name="travis.pusher_log_fallback"]').attr('value') == 'true'
|
||||
# for now I set pro to true also for enterprise, but it should be changed
|
||||
# to allow more granular config later
|
||||
pro: $('meta[name="travis.pro"]').attr('value') == 'true' || $('meta[name="travis.enterprise"]').attr('value') == 'true'
|
||||
enterprise: $('meta[name="travis.enterprise"]').attr('value') == 'true'
|
||||
pro: pro
|
||||
enterprise: enterprise
|
||||
sidebar_support_box: pro && !enterprise
|
||||
|
||||
pages_endpoint: pages_endpoint || billing_endpoint
|
||||
billing_endpoint: billing_endpoint
|
||||
|
|
Loading…
Reference in New Issue
Block a user