travis-web/app/views/flash-item.coffee
2015-02-03 09:48:22 +01:00

16 lines
289 B
CoffeeScript

`import BasicView from 'travis/views/basic'`
View = BasicView.extend
tagName: 'li'
classNameBindings: ['type']
type: (->
@get('flash.type') || 'broadcast'
).property('flash.type')
actions:
close: ->
@get('controller').close(@get('flash'))
`export default View`