Files
discourse-data-explorer/assets/javascripts/discourse/components/param-field.js.es6
T
2018-10-10 17:31:14 +05:30

10 lines
250 B
JavaScript

export default Ember.TextField.extend({
value: function(key, value) {
if (arguments.length > 1) {
this.get("params")[this.get("pname")] = value;
}
return this.get("params")[this.get("pname")];
}.property("params", "pname")
});