9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
export default Ember.Component.extend({
|
|
didInsertElement() {
|
|
this._super(...arguments);
|
|
$(this.element.querySelector("input"))
|
|
.select()
|
|
.focus();
|
|
}
|
|
});
|