Ticket #1336: 1336.patch
File 1336.patch, 1.6 KB (added by , 17 years ago) |
---|
-
_whatsnew.html
64 64 was not loading on an specific unknown situation. The breaking point has been removed.</li> 65 65 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1707">#1707</a>] The editor 66 66 no longer hangs when operating on documents imported from Microsoft Word.</li> 67 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1336">#1336</a>] Sometimes 68 the autogrow plugin didn't work properly in Firefox.</li> 67 69 </ul> 68 70 <p> 69 71 <a href="_whatsnew_history.html">See previous versions history</a> -
editor/plugins/autogrow/fckplugin.js
63 63 return ; 64 64 65 65 window.frameElement.height = iMainFrameSize ; 66 67 // Gecko browsers use an onresize handler to update the innermost 68 // IFRAME's height. If the document is modified before the onresize 69 // is triggered, the plugin will miscalculate the new height. Thus, 70 // forcibly trigger onresize. #1336 71 if ( typeof window.onresize === 'function' ) 72 window.onresize() ; 66 73 } 67 74 } 68 75 … … 89 96 FCKAutoGrow_Check() ; 90 97 } 91 98 92 FCK.Events.AttachEvent( 'OnStatusChange', FCKAutoGrow_CheckEditorStatus ) ; 93 No newline at end of file 99 FCK.Events.AttachEvent( 'OnStatusChange', FCKAutoGrow_CheckEditorStatus ) ;