travis-web/app/components/show-more-button.coffee
Lisa P 3fa79819dd change template for build history
new icon vor show more btn
2015-12-02 16:13:15 +01:00

20 lines
446 B
CoffeeScript

`import Ember from 'ember'`
ShowMoreButtonComponent = Ember.Component.extend
tagName: 'button'
classNames: ['showmore-button']
classNameBindings: ['isLoading', 'showMore']
showMore: true
attributeBindings: ['disabled']
disabledBinding: 'isLoading'
buttonLabel: (->
if @get('isLoading') then 'Loading' else 'Show more'
).property('isLoading')
click: ->
this.attrs.showMore()
`export default ShowMoreButtonComponent`