mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 20:43:01 +03:00
13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
|
import ModalComponent from 'ghost-admin/components/modal-base';
|
||
|
|
||
|
export default ModalComponent.extend({
|
||
|
actions: {
|
||
|
upgrade: function () {
|
||
|
const upgradeLink = this.model.upgradeLink;
|
||
|
window.open(upgradeLink);
|
||
|
this.closeModal();
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
});
|