travis-web/app/components/flash-item.js
2016-01-04 13:15:14 +01:00

17 lines
308 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'li',
classNameBindings: ['type'],
type: function() {
return this.get('flash.type') || 'broadcast';
}.property('flash.type'),
actions: {
close() {
return this.attrs.close(this.get('flash'));
}
}
});