Ckeditor 从编辑器中删除状态栏

Ckeditor 从编辑器中删除状态栏,ckeditor,statusbar,Ckeditor,Statusbar,我正在使用这段代码创建一个没有状态栏的简单CKEditor,但它没有被删除。。。为什么? <textarea cols="80" id="txtArticleComment" name="txtArticleComment" rows="20" required></textarea> <script> // Replace the <textarea id="editor"> with an CKEditor // instanc

我正在使用这段代码创建一个没有状态栏的简单CKEditor,但它没有被删除。。。为什么?

<textarea cols="80" id="txtArticleComment" name="txtArticleComment" rows="20" required></textarea>
<script>
    // Replace the <textarea id="editor"> with an CKEditor
    // instance, using default configurations.
    CKEDITOR.replace( 'txtArticleComment', {
        language: 'ar',
        uiColor: '#14B8C4',
        resize_enabled: 'false',
        removePlugins: 'elementspath',
        toolbar: [
            [ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
            [ 'TextColor', 'BGColor' ],
            [ 'BidiRtl', 'BidiLtr' ],
            [ 'JustifyRight', 'JustifyCenter', 'JustifyLeft', 'JustifyBlock' ],
            [ 'Blockquote', 'HorizontalRule', 'Smiley', 'SpecialChar' ],
            [ 'Preview', 'Maximize' ]
        ],
        height: 100,
        width: '100%'
    });
</script>

//用一个编辑器替换
//实例,使用默认配置。
CKEDITOR.replace('txtareclecomment'{
语言:“ar”,
uiColor:“#14B8C4”,
已启用调整_大小:“false”,
removePlugins:'elementspath',
工具栏:[
['Bold'、'Italic'、'-'、'NumberedList'、'BulletedList'、'-'、'Link'、'Unlink'],
['TextColor','BGColor'],
['BidiRtl','bidirtr'],
['JustifRight','JustifCenter','JustifLeft','JustifBlock'],
['Blockquote'、'HorizontalRule'、'Smiley'、'SpecialChar'],
[“预览”,“最大化”]
],
身高:100,
宽度:“100%”
});

是否启用了
调整大小
插件?尝试禁用它。哪个调整插件大小?如何禁用它?通过使用false作为bool来修复它,而不是像这样的字符串resize\u enabled:false谢谢