mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
14 lines
347 B
JavaScript
14 lines
347 B
JavaScript
export default Ember.View.extend({
|
|
classNameBindings: [':user-field'],
|
|
|
|
_focusOnEdit: function() {
|
|
if (this.get('controller.editing')) {
|
|
Ember.run.scheduleOnce('afterRender', this, '_focusName');
|
|
}
|
|
}.observes('controller.editing').on('didInsertElement'),
|
|
|
|
_focusName: function() {
|
|
$('.user-field-name').select();
|
|
}
|
|
});
|