mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05:00
8 lines
126 B
Text
8 lines
126 B
Text
|
export default Ember.Component.extend({
|
||
|
actions: {
|
||
|
changed(value) {
|
||
|
this.set('field.value', value);
|
||
|
}
|
||
|
}
|
||
|
});
|