Add a message for travis-ci.com as well.

Switched the logic around to make a bit more sense with the
configuration conditionals.
This commit is contained in:
Mathias Meyer 2014-03-18 10:44:34 +01:00
parent aaf777ce9d
commit 34c07325d3
3 changed files with 11 additions and 3 deletions

View File

@ -60,5 +60,9 @@ Travis.ProfileController = Travis.Controller.extend
@set("params.#{key}", params[key]) for key, value of params
showPrivateReposHint: (->
Travis.config.show_repos_hint == 'private'
) .property()
showPublicReposHint: (->
Travis.config.show_repos_hint == 'public'
) .property()

View File

@ -1,9 +1,13 @@
{{#if showPrivateReposHint}}
<p class="tip">
{{#if showPrivateReposHint}}
We're only showing <strong>your public repositories</strong> below.
You can find your <strong>private projects on <a href="https://travis-ci.com?utm_source=hooks">travis-ci.com</a></strong>.
{{/if}}
{{#if showPublicReposHint}}
We're only showing <strong>your private repositories</strong> below.
You can find your <strong>public projects on <a href="https://travis-ci.org?utm_source=hooks">travis-ci.org</a></strong>.
{{/if}}
</p>
{{/if}}
<p class="tip">
Enable your projects below by flicking the switch, add a <a href="http://docs.travis-ci.com">.travis.yml</a> to your project, and push a new commit to

View File

@ -82,7 +82,7 @@ $.extend Travis,
ga_code: $('meta[name="travis.ga_code"]').attr('value')
code_climate: $('meta[name="travis.code_climate"]').attr('value')
code_climate_url: $('meta[name="travis.code_climate_url"]').attr('value')
show_repos_hint: 'public'
show_repos_hint: 'private'
CONFIG_KEYS_MAP: {
go: 'Go'