Files
iD/js/id/presets/field.js
2013-03-13 11:34:21 -07:00

14 lines
299 B
JavaScript

iD.presets.Field = function(field, id) {
field = _.clone(field);
field.t = function(scope, options) {
return t('presets.fields.' + id + '.' + scope, options);
};
field.label = function() {
return field.t('label', {default: field.key});
};
return field;
};