mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
fb239054a0
follow up from #95 - converts components to use ember-cli-shims
36 lines
927 B
JavaScript
36 lines
927 B
JavaScript
import Component from 'ember-component';
|
|
|
|
export default Component.extend({
|
|
actions: {
|
|
update() {
|
|
if (typeof this.attrs.update === 'function') {
|
|
this.attrs.update(...arguments);
|
|
}
|
|
},
|
|
|
|
onInput() {
|
|
if (typeof this.attrs.onInput === 'function') {
|
|
this.attrs.onInput(...arguments);
|
|
}
|
|
},
|
|
|
|
uploadStarted() {
|
|
if (typeof this.attrs.uploadStarted === 'function') {
|
|
this.attrs.uploadStarted(...arguments);
|
|
}
|
|
},
|
|
|
|
uploadFinished() {
|
|
if (typeof this.attrs.uploadFinished === 'function') {
|
|
this.attrs.uploadFinished(...arguments);
|
|
}
|
|
},
|
|
|
|
formChanged() {
|
|
if (typeof this.attrs.formChanged === 'function') {
|
|
this.attrs.formChanged(...arguments);
|
|
}
|
|
}
|
|
}
|
|
});
|