16 lines
289 B
CoffeeScript
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`
|