mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
16 lines
289 B
JavaScript
16 lines
289 B
JavaScript
import Mixin from 'ember-metal/mixin';
|
|
|
|
export default Mixin.create({
|
|
submitting: false,
|
|
|
|
actions: {
|
|
save() {
|
|
this.set('submitting', true);
|
|
|
|
this.save().then(() => {
|
|
this.set('submitting', false);
|
|
});
|
|
}
|
|
}
|
|
});
|