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