让CKEditor插件stylesheetparser工作 - editor.filter未定义

时间:2013-05-03 14:52:45

标签: javascript ckeditor wysiwyg

我正在尝试使用stylesheetparser,但是收到错误“editor.filter is undefined”。

这是我的config.js文件:

CKEDITOR.editorConfig = function( config ) {
    // Define changes to default configuration here.
    // For the complete reference:
    // http://docs.ckeditor.com/#!/api/CKEDITOR.config

    // The toolbar groups arrangement, optimized for two toolbar rows.
    config.toolbarGroups = [
        { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
        { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
        { name: 'links' },
        { name: 'insert' },
        { name: 'forms' },
        { name: 'tools' },
        { name: 'colors' },          
        { name: 'document',       groups: [ 'mode', 'document', 'doctools' ] },
        { name: 'others' },      
        '/',
        { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
        { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align' ] },
        { name: 'styles' },
        { name: 'about' }
    ];

    config.extraPlugins = 'stylesheetparser';

    config.contentsCss = 'editor_new.css';

    // Remove some buttons, provided by the standard plugins, which we don't
    // need to have in the Standard(s) toolbar.
    config.removeButtons = '';
};

0 个答案:

没有答案