mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-03-06 01:19:32 +00:00
9 lines
247 B
JavaScript
9 lines
247 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()
|
|
});
|