Ticket #6228: 6228.patch

File 6228.patch, 659 bytes (added by Paweł Horzela, 14 years ago)

Patch

  • _source/plugins/tabletools/plugin.js

     
    527527                                        {
    528528                                                var last = frag.getLast( CKEDITOR.dom.walker.whitespaces( true ) );
    529529                                                if ( last && !( last.is && last.is( 'br' ) ) )
    530                                                         frag.append( new CKEDITOR.dom.element( 'br' ) );
     530                                                {
     531                                                        if( CKEDITOR.env.ie6Compat )
     532                                                                frag.append( '<br>' );
     533                                                        else
     534                                                                frag.append( new CKEDITOR.dom.element( 'br' ) );
     535                                                }
    531536                                        }
    532537
    533538                                        cell.moveChildren( frag );
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy