﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9450	autoGrow_onStartup not working	Jeff Fournier		"When the autogrow plugin is added to CKEditor, the editor will always grow no matter what the value of autoGrow_onStartup is.

To replicate simply add the autogrow plugin and set autoGrow_onStartup to false. The editor will grow even if autrogrow is false.

I think the problem is in _source/plugins/autogrow/plugin.js at line 71 :

{{{
editor.config.autoGrow_onStartup && ( eventsList[ 'instanceReady' ] = 1 );
}}}

This line doesn't seem to do anything. If you put it as an ""if"" condition and add the next lines into the ""if"" it resolves the problem :

{{{
if(editor.config.autoGrow_onStartup && ( eventsList[ 'instanceReady' ] = 1 ))
{
   for ( var eventName in eventsList )
   {
	...				
   }
}
}}}




I used :

CKEditor 3.6.4
Windows 7
Firefox
"	Bug	closed	Normal		General	3.6.3	fixed		
