travis-web/app/components/sync-button.coffee
2015-09-28 16:44:32 +02:00

12 lines
179 B
CoffeeScript

`import Ember from 'ember'`
Component = Ember.Component.extend
classNames: ["sync-button"]
actions: {
sync: ->
@get('user').sync()
}
`export default Component`