mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
1bcd7fd333
issue #5409 & #5336 - update settings/general - update signin - update signup - update edit user - update reset password - update setup/three - remove `formatErrors` function from validationEngine mixin (it's no longer needed as inline validations should handle this instead)
31 lines
780 B
JavaScript
31 lines
780 B
JavaScript
import Ember from 'ember';
|
|
/*global device*/
|
|
var TrimFocusInput = Ember.TextField.extend({
|
|
focus: true,
|
|
|
|
attributeBindings: ['autofocus'],
|
|
|
|
autofocus: Ember.computed(function () {
|
|
if (this.get('focus')) {
|
|
return (device.ios()) ? false : 'autofocus';
|
|
}
|
|
|
|
return false;
|
|
}),
|
|
|
|
focusField: Ember.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: Ember.on('focusOut', function () {
|
|
var text = this.$().val();
|
|
this.$().val(text.trim());
|
|
})
|
|
});
|
|
|
|
export default TrimFocusInput;
|