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