mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
19 lines
345 B
JavaScript
19 lines
345 B
JavaScript
|
import ModalComponent from 'ghost/components/modals/base';
|
||
|
|
||
|
export default ModalComponent.extend({
|
||
|
|
||
|
submitting: false,
|
||
|
|
||
|
user: null,
|
||
|
|
||
|
actions: {
|
||
|
confirm() {
|
||
|
this.set('submitting', true);
|
||
|
|
||
|
this.attrs.confirm().finally(() => {
|
||
|
this.send('closeModal');
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|