Ticket #6339: 6339_2.patch

File 6339_2.patch, 711 bytes (added by Garry Yao, 14 years ago)
  • _source/plugins/autogrow/plugin.js

     
    4242                                editor.on( eventName, function( evt )
    4343                                {
    4444                                        // Some time is required for insertHtml, and it gives other events better performance as well.
    45                                         if ( evt.editor.mode == 'wysiwyg' )
     45                                        if ( evt.editor.mode == 'wysiwyg' &&
     46                                                // Disable autogrow when the editor is maximized .(#6339)
     47                                                editor.getCommand( 'maximize' ).state != CKEDITOR.TRISTATE_ON)
     48                                        {
    4649                                                setTimeout( function(){ resizeEditor( evt.editor ); }, 100 );
     50                                        }
    4751                                });
    4852                        }
    4953                }
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy