Angenommen, ich habe eine Ember-Anwendung mit Zielplattform Handy. Dann möchte ich zentral an einer Stelle für alle Inputfelder Autokorrektur usw. deaktivieren:
1 2 3 4 5 6 7 8 9 10 11 |
// bsplw. in app.js: Ember.TextSupport.reopen({ attributeBindings: ['autocomplete', 'autocorrect', 'autocapitalize', 'spellcheck'], init: function () { this._super.apply(this, arguments); this.set('autocomplete', 'off'); this.set('autocorrect', 'off'); this.set('autocapitalize', 'off'); this.set('spellcheck', false); // WICHTIG: boolean } }); |