mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-02-09 04:54:50 +00:00
10 lines
250 B
JavaScript
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')
|
|
});
|