Give example values for CSS rules in embedding

This commit is contained in:
Robin Ward
2015-09-23 12:10:15 -04:00
parent 6b48647fc7
commit 7d4dbc9962
4 changed files with 15 additions and 3 deletions
@@ -6,6 +6,11 @@ export default Ember.Component.extend({
@computed('field')
inputId(field) { return field.dasherize(); },
@computed('placeholder')
placeholderValue(placeholder) {
return placeholder ? I18n.t(placeholder) : null;
},
@computed('field')
translationKey(field) { return `admin.embedding.${field}`; },