The escaping is unnecessary and confusing to the user.

This commit is contained in:
cahrens
2016-03-07 11:54:29 -05:00
parent e6fcfae994
commit 2eabaccb33

View File

@@ -312,7 +312,7 @@
updateValueInField: function () {
var value = (_.isUndefined(this.modelValue()) || _.isNull(this.modelValue())) ? '' : this.modelValue();
this.$('.u-field-value input').val(_.escape(value));
this.$('.u-field-value input').val(value);
},
saveValue: function () {