fix tab highlighting

This commit is contained in:
Lisa P 2015-09-18 12:13:18 +02:00
parent f9b1c37d04
commit d44f020dec
4 changed files with 10 additions and 8 deletions

View File

@ -10,9 +10,4 @@ SettingsController = Ember.Controller.extend
sshKeyDeleted: ->
@set('model.customSshKey', null)
# deactivate: ->
# console.log('deactivate')
# debugger
`export default SettingsController`

View File

@ -15,4 +15,12 @@ Route = TravisRoute.extend
$.ajax("#{apiEndpoint}/v3/repo/#{repoId}/branches?include=build.commit", options).then (response) ->
response.branches
activate: () ->
$('.tab.tabs--main li').removeClass('active')
$('#tab_branches').addClass('active')
deactivate: () ->
$('#tab_branches').removeClass('active')
`export default Route`

View File

@ -222,7 +222,7 @@
bottom: -4px
@media #{$medium-up}
top: -2.3em
width: 4.1em
width: 4.8em
padding: .1em .1em
white-space: nowrap
font-size: 14px;

View File

@ -114,8 +114,7 @@
<div class="branch-commiter">
<div class="row-item">
{{#if build.last_build}}
<img src="{{build.last_build.commit.committer.avatar_url}}" alt="avatar" class="avatar">
<span class="label-align">{{build.last_build.commit.committer.name}}</span>
<img src="{{build.last_build.commit.committer.avatar_url}}" alt="avatar" class="avatar"><span class="label-align">{{build.last_build.commit.committer.name}}</span>
{{else}}
<div class="avatar"></div><span class="label-align">no commits yet</span>
{{/if}}