mirror of
https://github.com/discourse/discourse.git
synced 2025-03-15 19:20:20 +08:00
11 lines
314 B
JavaScript
11 lines
314 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.TextField.extend({
|
|
attributeBindings: ['autocorrect', 'autocapitalize', 'autofocus', 'maxLength'],
|
|
|
|
@computed("placeholderKey")
|
|
placeholder(placeholderKey) {
|
|
return placeholderKey ? I18n.t(placeholderKey) : "";
|
|
}
|
|
});
|