mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 22:53:37 +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() {
|
|
}
|
|
});
|