Javascript Summernote对话框未正确显示

Javascript Summernote对话框未正确显示,javascript,jquery,twitter-bootstrap,Javascript,Jquery,Twitter Bootstrap,我的Summernote有一个问题,对话框/情态动词不完全适合它。这是照片 这是我的summernote代码 $('#summernote_new_post').summernote({ dialogsInBody: true, height: 400, minHeight: null, maxHeight: null, focus: false, callbacks: { onImageUpload: function(file

我的Summernote有一个问题,对话框/情态动词不完全适合它。这是照片

这是我的summernote代码

$('#summernote_new_post').summernote({
    dialogsInBody: true,
    height: 400,
    minHeight: null,
    maxHeight: null,
    focus: false,
    callbacks: {
        onImageUpload: function(files, editor, welEditable) {
            for (var i = files.length - 1; i >= 0; i--) {
                sendFile(files[i], this);
            }
        },
    },

    dialogsFade: true,
    toolbar: [
        ['style', ['style']],
        ['font', ['bold', 'italic', 'underline', 'clear']],
        ['fontname', ['fontname']],
        ['color', ['color']],
        ['para', ['ul', 'ol', 'paragraph']],
        ['height', ['height']],
        ['table', ['table']],
        ['insert', ['link', 'picture', 'hr', 'video']],
        ['view', ['codeview']],
        ['help', ['help']]


    ],
    popover: {
        image: [
            ['imagesize', ['imageSize100', 'imageSize50', 'imageSize25']],
            ['float', ['floatLeft', 'floatRight', 'floatNone']],
            ['custom', ['imageAttributes', 'imageShape']],
            ['remove', ['removeMedia']]
        ],
        link: [
            ['link', ['linkDialogShow', 'unlink']]
        ],
        air: [
            ['color', ['color']],
            ['font', ['bold', 'underline', 'clear']],
            ['para', ['ul', 'paragraph']],
            ['table', ['table']],
            ['insert', ['link', 'picture']]
        ]
    },
});

有人能帮我吗?我认为这与我的代码有冲突。谢谢。

有人能帮我吗?谢谢有人能帮我吗?谢谢