Ticket #3173: 3173.patch
File 3173.patch, 923 bytes (added by , 16 years ago) |
---|
-
_source/core/editor.js
74 74 // Setup the lister for the "customConfigLoaded" event. 75 75 editor.on( 'customConfigLoaded', function() 76 76 { 77 // Overwrite the settings from the in-page config.78 77 if ( instanceConfig ) 78 { 79 // Register the events that may have been set at the instance 80 // configuration object. 81 if ( instanceConfig.on ) 82 { 83 for ( var eventName in instanceConfig.on ) 84 { 85 editor.on( eventName, instanceConfig.on[ eventName ] ); 86 } 87 } 88 89 // Overwrite the settings from the in-page config. 79 90 CKEDITOR.tools.extend( editor.config, instanceConfig, true ); 80 91 92 delete editor.config.on; 93 } 94 81 95 onConfigLoaded( editor ); 82 96 }); 83 97