mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
a399adea3b
refs #5652 - ensure gh-spin-button passes type & tabindex through to markup - add gh-input class to auto focus input - add tabindexes to setup/two + make first field autofocus and button submit
31 lines
807 B
JavaScript
31 lines
807 B
JavaScript
import Ember from 'ember';
|
|
/*global device*/
|
|
var TrimFocusInput = Ember.TextField.extend({
|
|
focus: true,
|
|
classNames: 'gh-input',
|
|
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;
|