17 lines
275 B
JavaScript
17 lines
275 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
classNames: ["flakes-frame"],
|
|
|
|
didInsertElement: function() {
|
|
FlakesFrame.init();
|
|
},
|
|
|
|
actions: {
|
|
invalidateSession: function() {
|
|
this.sendAction('invalidateSession');
|
|
},
|
|
|
|
},
|
|
|
|
});
|