discourse-data-explorer/assets/javascripts/discourse/components/param-field.js.es6

10 lines
250 B
Plaintext
Raw Normal View History

2015-06-30 18:12:12 -04:00
export default Ember.TextField.extend({
2017-08-02 04:19:38 -04:00
value: function(key, value) {
2015-06-30 18:12:12 -04:00
if (arguments.length > 1) {
this.get('params')[this.get('pname')] = value;
}
2017-08-02 04:19:38 -04:00
2015-06-30 18:12:12 -04:00
return this.get('params')[this.get('pname')];
2015-06-30 22:51:38 -04:00
}.property('params', 'pname')
2015-06-30 18:12:12 -04:00
});