This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/components/x-application/component.js
2015-07-10 10:34:17 -08:00

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');
},
},
});