mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update config.js
This commit is contained in:
parent
db8dcc684d
commit
4e4d3c6917
@ -64,9 +64,10 @@ CKEDITOR.plugins.add('uhtml', {
|
|||||||
editor.ui.addButton("UploadHtml", {label: "插入HTML代码", command: 'uhtml', icon: 'creatediv', toolbar: 'insert,10'});
|
editor.ui.addButton("UploadHtml", {label: "插入HTML代码", command: 'uhtml', icon: 'creatediv', toolbar: 'insert,10'});
|
||||||
editor.addCommand('uhtml', {
|
editor.addCommand('uhtml', {
|
||||||
exec: function (editor) {
|
exec: function (editor) {
|
||||||
layer.prompt({title: '插入HTML代码', formType: 2, area: ['600px', '300px']}, function (html, index) {
|
layer.prompt({title: '插入HTML代码', formType: 2, area: ['600px', '300px']}, function (html, index, element) {
|
||||||
var element = CKEDITOR.dom.element.createFromHtml('<div data-type="insert-html">' + html + '</div>');
|
element = CKEDITOR.dom.element.createFromHtml('<div data-type="insert-html">' + html + '</div>');
|
||||||
editor.insertElement(element), layer.close(index);
|
editor.insertElement(element);
|
||||||
|
layer.close(index);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user