Changes between Initial Version and Version 2 of Ticket #8398


Ignore:
Timestamp:
Sep 21, 2011, 3:10:07 PM (13 years ago)
Author:
Jakub Ś
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8398

    • Property Status changed from new to confirmed
  • Ticket #8398 – Description

    initial v2  
    22
    33Custom cofnig file.
     4{{{
    45CKEDITOR.editorConfig = function( config )
    56{
     
    78 config.startupMode = 'source';
    89};
    9 
     10}}}
    1011
    1112Settings on HTML page:
    1213
    1314**OK:**
     15{{{
    1416CKEDITOR.replace( 'editor1' ,  {customConfig : 'myconfig.js' });
    15 CKEDITOR.replace( 'editor2');                 
     17CKEDITOR.replace( 'editor2');
     18}}}                 
    1619This applies only to the first editor.
    1720
    1821**PROBLEM:**
     22{{{
    1923CKEDITOR.replace( 'editor1' );
    20 CKEDITOR.replace( 'editor2',  {customConfig : 'myconfig.js' } );                 
     24CKEDITOR.replace( 'editor2',  {customConfig : 'myconfig.js' } );
     25}}}                 
    2126This applies either to one or both editors
    2227
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy