add githubCommitUrl helper to build history

This commit is contained in:
Lisa Passing 2015-06-22 17:33:25 +02:00
parent 8ff3297083
commit 4e03709cca
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,6 @@
`import Ember from 'ember'`
`import { gravatarImage } from 'travis/utils/urls'`
`import { githubCommit as githubCommitUrl } from 'travis/utils/urls'`
BuildsItemComponent = Ember.Component.extend
classNameBindings: ['build.state']
@ -9,4 +10,8 @@ BuildsItemComponent = Ember.Component.extend
gravatarImage(@get('build.commit.authorEmail'), 40)
).property('build.commit.authorEmail')
urlGithubCommit: (->
githubCommitUrl(@get('build.repo.slug'), @get('build.commit.sha'))
).property('build.commit.sha')
`export default BuildsItemComponent`

View File

@ -31,8 +31,8 @@
{{/link-to}}
{{/if}}
</p>
<p class="">
<a {{bind-attr href="build.urlGithubCommit"}}>
<p>
<a href="{{urlGithubCommit}}">
<span class="icon icon-github"></span>
{{format-sha build.commit.sha}}
</a>

View File

@ -23,7 +23,6 @@
{{view 'repo-show-tabs'}}
</div>
<div class="tabbody repo-main">
<h1>Hello</h1>
{{outlet}}
</div>
</div>