mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +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');
|
|
}
|
|
}
|
|
});
|