2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
32 lines
788 B
JavaScript
32 lines
788 B
JavaScript
/*global device*/
|
|
import Ember from 'ember';
|
|
|
|
const {TextField, computed, on} = Ember;
|
|
|
|
export default TextField.extend({
|
|
focus: true,
|
|
classNames: 'gh-input',
|
|
attributeBindings: ['autofocus'],
|
|
|
|
autofocus: computed(function () {
|
|
if (this.get('focus')) {
|
|
return (device.ios()) ? false : 'autofocus';
|
|
}
|
|
|
|
return false;
|
|
}),
|
|
|
|
focusField: on('didInsertElement', function () {
|
|
// This fix is required until Mobile Safari has reliable
|
|
// autofocus, select() or focus() support
|
|
if (this.get('focus') && !device.ios()) {
|
|
this.$().val(this.$().val()).focus();
|
|
}
|
|
}),
|
|
|
|
trimValue: on('focusOut', function () {
|
|
let text = this.$().val();
|
|
this.$().val(text.trim());
|
|
})
|
|
});
|