framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
25 lines (23 loc) • 401 B
JavaScript
import Modal from './modal-class';
import CustomModal from './custom-modal-class';
export default {
name: 'modal',
static: {
Modal,
CustomModal,
},
create() {
const app = this;
app.customModal = {
create(params) {
return new CustomModal(app, params);
},
};
},
params: {
modal: {
moveToRoot: true,
queueDialogs: true,
},
},
};