travis-web/app/components/sync-button.coffee
2015-03-02 12:26:19 +01:00

10 lines
148 B
CoffeeScript

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