CKEditor增强型图像插件并不总是正确初始化

时间:2015-10-22 11:01:55

标签: ckeditor ckeditor4.x

我在使用增强型图像插件(image2)在CKEditor 4.5.4中初始化图像时遇到问题。第一次加载CKEditor实例时,图像无法正确初始化。见图image not correctly initialised。标题字段可以正常工作,但我无法移动或选择图片。

但是,如果我导航到我的Web应用程序中的另一个网页,然后导航回我们使用CKEditor的页面,一切正常。换句话说,如果之前已经加载了CKEditor实例,那么一切都运行良好。

我们正在使用AngularJS 1.4.4和ng-ckeditor。这是我们使用的editorOptions:

$scope.editorOptions = {
    language: 'no',
    customConfig: '/statisk/app/common/ckeditor/ckeditor-config.js',
    extraPlugins: 'sharedspace,image2,widget,lineutils,uploadimage,uploadwidget,filetools',
    extraAllowedContent: 'a(*); span(*); figure(align_center, align_left); div{*}; figure; figcaption; img[alt,!src]{width,height};',
    toolbar: [
                   {name: 'paragraph', items: ['BulletedList', 'NumberedList']},
                   {name: 'links', items: ['Link']},
                   {name: 'insert', items: ['Image']}
               ],
    sharedSpaces: { top: 'toolbar_hovedtekst' }
};  

HTML:

<div id="hovedtekst" data-ng-show="modus.showEditorControls()">
    <div id="toolbar_hovedtekst"></div>
    <div class="ck_editor_hovedtekst test_hovedtekst" ckeditor="editorOptions" data-ng-model="hovedtekstCtrl.content"></div>
</div>

可能出现什么问题?

0 个答案:

没有答案