mirror of
https://github.com/flarum/framework.git
synced 2024-12-02 15:03:44 +08:00
690174297d
- Componentize more stuff, heading in the direction of Ember 2.0 - Start CSS from scratch - Everything is broken atm!
10 lines
133 B
JavaScript
Executable File
10 lines
133 B
JavaScript
Executable File
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
|
|
close: function() {
|
|
this.sendAction('closeAction');
|
|
}
|
|
|
|
});
|