mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-02-07 20:18:18 +00:00
9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
export default Ember.TextField.extend({
|
|
value: function(key, value, previousValue) {
|
|
if (arguments.length > 1) {
|
|
this.get('params')[this.get('pname')] = value;
|
|
}
|
|
return this.get('params')[this.get('pname')];
|
|
}.property('params', 'pname')
|
|
});
|