mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 04:42:02 -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);
|
|
}
|
|
}
|
|
});
|