travis-web/app/components/hooks-list-item.coffee
2015-04-22 16:51:41 +02:00

19 lines
440 B
CoffeeScript

`import Ember from 'ember'`
`import config from 'travis/config/environment'`
HooksListItemComponent = Ember.Component.extend
tagName: 'li'
classNames: ['row']
classNameBindings: ['hook.active:active']
githubOrgsOauthAccessSettingsUrl: config.githubOrgsOauthAccessSettingsUrl
actions:
handleToggleError: ->
@set("showError", true)
close: ->
@set("showError", false)
`export default HooksListItemComponent`