fix tab highlighting
This commit is contained in:
parent
f9b1c37d04
commit
d44f020dec
|
@ -10,9 +10,4 @@ SettingsController = Ember.Controller.extend
|
|||
sshKeyDeleted: ->
|
||||
@set('model.customSshKey', null)
|
||||
|
||||
# deactivate: ->
|
||||
# console.log('deactivate')
|
||||
# debugger
|
||||
|
||||
|
||||
`export default SettingsController`
|
||||
|
|
|
@ -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`
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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}}
|
||||
|
|
Loading…
Reference in New Issue
Block a user