我将图像上传到bootstrap summernote编辑器时出现图像重叠问题。我已经附加了该图像。我正在使用bootstrap summernote v0.5.9以及以下配置。请有人给我解决方案。
$('.rich-editor').summernote({
height: 300,
width: "100%",
minHeight: null,
maxHeight: null,
dialogsInBody: true,
onfocus: function(e) {
$('body').addClass('overlay-disabled');
},
onblur: function(e) {
$('body').removeClass('overlay-disabled');
},
toolbar: [
['style', ['style']],
['style', ['bold', 'italic', 'underline']],
['insert', ['table', 'picture', 'video']],
['fontsize', ['fontsize']],
['para', ['ul', 'ol', 'paragraph']],
['misc', ['fullscreen', 'codeview', 'help']]
],
airPopover: [
['para', ['ul', 'paragraph']],
['table', ['table']],
['insert', ['link', 'picture']]
]
});