Module Name
This is the content of the modal.
// JavaScript文件
apos.define('module-name', {
extend: 'apostrophe-module',
construct: function(self, options) {
self.enableWidgetModal = function() {
apos.dialog('module-name-modal', {
init: function(callback) {
// 初始化模态框
callback();
}
});
};
}
});