Ticket #6339: 6339_3.patch

File 6339_3.patch, 789 bytes (added by Sa'ar Zac Elias, 14 years ago)
  • _source/plugins/autogrow/plugin.js

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