Ticket #6695: 6695.patch

File 6695.patch, 657 bytes (added by Garry Yao, 13 years ago)
  • _source/plugins/maximize/plugin.js

     
    268268                                                        // Remove cke_maximized class.
    269269                                                        container.removeClass( 'cke_maximized' );
    270270
     271                                                        // Webkit requires a re-layout on editor chrome. (#6695)
     272                                                        if ( CKEDITOR.env.webkit )
     273                                                        {
     274                                                                container.setStyle( 'display', 'inline' );
     275                                                                setTimeout( function(){ container.setStyle( 'display', 'block' ); }, 0 );
     276                                                        }
     277
    271278                                                        if ( shim )
    272279                                                        {
    273280                                                                shim.remove();
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy