mirror of
https://github.com/flarum/framework.git
synced 2024-12-13 15:13:42 +08:00
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
|
import Ember from 'ember';
|
||
|
|
||
|
import ModalViewMixin from '../mixins/modal-view';
|
||
|
|
||
|
export default Ember.View.extend(ModalViewMixin, {
|
||
|
classNames: ['modal-dialog', 'modal-sm', 'modal-signup'],
|
||
|
templateName: 'signup',
|
||
|
|
||
|
didInsertElement: function() {
|
||
|
}
|
||
|
});
|