Ticket #6339: 6339_2.patch
File 6339_2.patch, 711 bytes (added by , 14 years ago) |
---|
-
_source/plugins/autogrow/plugin.js
42 42 editor.on( eventName, function( evt ) 43 43 { 44 44 // 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 { 46 49 setTimeout( function(){ resizeEditor( evt.editor ); }, 100 ); 50 } 47 51 }); 48 52 } 49 53 }