Changes between Initial Version and Version 2 of Ticket #8398
- Timestamp:
- Sep 21, 2011, 3:10:07 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8398
-
Property
Status
changed from
new
toconfirmed
-
Property
Status
changed from
-
Ticket #8398 – Description
initial v2 2 2 3 3 Custom cofnig file. 4 {{{ 4 5 CKEDITOR.editorConfig = function( config ) 5 6 { … … 7 8 config.startupMode = 'source'; 8 9 }; 9 10 }}} 10 11 11 12 Settings on HTML page: 12 13 13 14 **OK:** 15 {{{ 14 16 CKEDITOR.replace( 'editor1' , {customConfig : 'myconfig.js' }); 15 CKEDITOR.replace( 'editor2'); 17 CKEDITOR.replace( 'editor2'); 18 }}} 16 19 This applies only to the first editor. 17 20 18 21 **PROBLEM:** 22 {{{ 19 23 CKEDITOR.replace( 'editor1' ); 20 CKEDITOR.replace( 'editor2', {customConfig : 'myconfig.js' } ); 24 CKEDITOR.replace( 'editor2', {customConfig : 'myconfig.js' } ); 25 }}} 21 26 This applies either to one or both editors 22 27