UNPKG

kre-form

Version:

本项目由 Angular8+ 编写的表单设计器和表单应用,所有的配置都是 JSON 结构体组成,PC 端是基于 ANT 组件库封装

34 lines 1.99 kB
��CKEDITOR.plugins.add('variable', { requires: ['iframedialog'], icons: 'variable', init: function(editor) { CKEDITOR.dialog.addIframe('ck-variable-dialogue', editor.insertVariable.title, editor.insertVariable.url, 500,300,function(){ }); editor.addCommand('insertVariable', { exec: function(editor){ editor.insertVariable = function(variable, cb){ editor.insertHtml(variable); CKEDITOR.dialog.getCurrent().hide() if(cb)cb(window.openedEditor); window.openedEditor = null; } window.currentEditor=editor; editor.openDialog('ck-variable-dialogue'); } }); editor.ui.addButton('Variable', { label: editor.insertVariable.title, command: 'insertVariable' }); } });