Update config.js

This commit is contained in:
邹景立 2021-09-16 14:29:53 +08:00
parent 752757ee2e
commit 311e095daa

View File

@ -68,10 +68,9 @@ CKEDITOR.plugins.add('uhtml', {
editor.ui.addButton("UploadHtml", {label: "插入HTML代码", command: 'uhtml', icon: 'creatediv', toolbar: 'insert,10'});
editor.addCommand('uhtml', {
exec: function (editor) {
layer.prompt({title: '插入HTML代码', formType: 2, area: ['600px', '300px']}, function (html, index, element) {
layui.layer.prompt({title: '插入HTML代码', formType: 2, area: ['600px', '300px']}, function (html, index, element) {
element = CKEDITOR.dom.element.createFromHtml('<div data-type="insert-html">' + html + '</div>');
editor.insertElement(element);
layer.close(index);
editor.insertElement(element), layui.layer.close(index);
});
}
});