Ticket #8052: 8052.patch

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

     
    9393                                }
    9494                        };
    9595
     96                        editor.addCommand( 'autogrow', { exec : resizeEditor, modes : { wysiwyg:1 }, readOnly: 1, canUndo: false } );
     97
    9698                        for ( var eventName in { contentDom:1, key:1, selectionChange:1, insertElement:1 } )
    9799                        {
    98100                                editor.on( eventName, function( evt )
     
    103105                                                // Disable autogrow when the editor is maximized .(#6339)
    104106                                                ( !maximize || maximize.state != CKEDITOR.TRISTATE_ON ) )
    105107                                        {
    106                                                 setTimeout( function(){ resizeEditor( evt.editor ); }, 100 );
     108                                                setTimeout( function(){ editor.execCommand( 'autogrow' ) }, 100 );
    107109                                        }
    108110                        });
    109111                }
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy