mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
8f5120150c
No Issue - Don't add the "autofocus" attribute to the input element unless the "focus" property is set to true.
31 lines
707 B
JavaScript
31 lines
707 B
JavaScript
/*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;
|
|
}),
|
|
|
|
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();
|
|
}
|
|
},
|
|
|
|
focusOut: function () {
|
|
var text = this.$().val();
|
|
|
|
this.$().val(text.trim());
|
|
}
|
|
});
|
|
|
|
export default TrimFocusInput;
|