﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6161	Autogrow plugin should resize on instanceReady too.	Scott Bronson		"The autogrow plugin should resize the editor when starting up too.  Otherwise there's a good chance that the editor size will jump when you first click on it.  The patch is trivial:


{{{
--- a/public/app/ckeditor/_source/plugins/autogrow/plugin.js
+++ b/public/app/ckeditor/_source/plugins/autogrow/plugin.js
@@ -37,7 +37,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
    {
        init : function( editor )
        {
-           for ( var eventName in { contentDom:1, key:1, selectionChange:1, insertElement:1 } )
+           for ( var eventName in { instanceReady:1, contentDom:1, key:1, selectionChange:1, insertElement:1 } )
            {
                editor.on( eventName, function( evt )
                {
}}}
"	Bug	closed	Normal	CKEditor 3.6.2	General	3.4.1	fixed		fckeditor@…
