Ticket #3609: 3609_3.patch

File 3609_3.patch, 1.3 KB (added by Garry Yao, 15 years ago)
  • _source/plugins/wysiwygarea/plugin.js

     
    173173
    174174                init : function( editor )
    175175                {
     176                        var fixForBody = ( editor.config.enterMode != CKEDITOR.ENTER_BR )
     177                                ? editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' : false;
     178
    176179                        editor.on( 'editingBlockReady', function()
    177180                                {
    178181                                        var mainElement,
     
    434437                                                                // Get the HTML version of the data.
    435438                                                                if ( editor.dataProcessor )
    436439                                                                {
    437                                                                         var fixForBody = ( editor.config.enterMode != CKEDITOR.ENTER_BR )
    438                                                                                 ? editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' : false;
    439440                                                                        data = editor.dataProcessor.toHtml( data, fixForBody );
    440441                                                                }
    441442
     
    487488                                                                var data = iframe.getFrameDocument().getBody().getHtml();
    488489
    489490                                                                if ( editor.dataProcessor )
    490                                                                         data = editor.dataProcessor.toDataFormat( data, ( editor.config.enterMode != CKEDITOR.ENTER_BR ) );
     491                                                                        data = editor.dataProcessor.toDataFormat( data, fixForBody );
    491492
    492493                                                                // Strip the last blank paragraph within document.
    493494                                                                if ( editor.config.ignoreEmptyParagraph )
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy