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