UNPKG

lmd

Version:

LMD: Lazy Module Declaration

10 lines (8 loc) 274 B
var Ember = require('ember'); module.exports = Ember.TextField.extend({ focusOnInsert: function () { // Re-set input value to get rid of a reduntant text selection this.$().val(this.$().val()); this.$().focus(); }.on('didInsertElement') });