mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 02:20:45 +08:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
export default Ember.Component.extend({
|
|
didInsertElement() {
|
|
this._super();
|
|
this.$('input').select().focus();
|
|
}
|
|
});
|