Ghost/ghost/admin/app/components/modal-upgrade-host-limit-custom-theme.js

13 lines
320 B
JavaScript
Raw Normal View History

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;
}
}
});