mirror of
https://github.com/flarum/core.git
synced 2025-07-26 03:01:22 +02:00
- 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');
|
|
}
|
|
|
|
});
|