add some scrolling to click on sidebar

This commit is contained in:
Lisa Passing 2015-05-06 16:35:26 +02:00
parent 7229e068c5
commit e8da85562c

View File

@ -23,7 +23,13 @@ View = Ember.CollectionView.extend
colorForState(@get('repo.lastBuildState'))
).property('repo.lastBuildState')
scrollTop: (->
if (window.scrollY > 0)
$('html, body').animate({scrollTop: 0}, 200)
)
click: ->
@scrollTop()
@get('controller').transitionToRoute('/' + @get('repo.slug'))
`export default View`