mirror of
https://github.com/flarum/core.git
synced 2025-08-06 08:27:42 +02:00
Signup + modal refactoring
This commit is contained in:
16
ember/app/mixins/modal-view.js
Normal file
16
ember/app/mixins/modal-view.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Mixin.create({
|
||||
focusEventOn: function() {
|
||||
this.get('controller').on('focus', this, this.focus);
|
||||
}.on('didInsertElement'),
|
||||
|
||||
focusEventOff: function() {
|
||||
this.get('controller').off('focus', this, this.focus);
|
||||
}.on('willDestroyElement'),
|
||||
|
||||
focus: function() {
|
||||
this.$('input:first:visible:enabled').focus();
|
||||
console.log('focus first')
|
||||
}.on('didInsertElement')
|
||||
});
|
Reference in New Issue
Block a user