mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
|
import ModalComponent from 'ghost-admin/components/modal-base';
|
||
|
|
||
|
export default ModalComponent.extend({
|
||
|
actions: {
|
||
|
confirm() {
|
||
|
this.confirm();
|
||
|
this.send('closeModal');
|
||
|
}
|
||
|
}
|
||
|
});
|