Ticket #2114: 2114.patch
File 2114.patch, 1.7 KB (added by , 17 years ago) |
---|
-
_whatsnew.html
51 51 which stopped working in FCKeditor 2.6.</li> 52 52 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2039">#2039</a>] Fixed the locking up issue 53 53 in the Find/Replace dialog.</li> 54 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2114">#2114</a>] Added a workaround for an 55 IE6 bug which causes floating dialogs to appear blank after opening it for the first time.</li> 54 56 </ul> 55 57 <h3> 56 58 Version 2.6</h3> -
editor/fckdialog.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 2 <!-- 3 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 4 * Copyright (C) 2003-2008 Frederico Caldeira Knabben … … 190 190 } 191 191 } 192 192 193 /** 194 * IE6 has a similar bug where it sometimes thinks $('contents') has an 195 * offsetHeight of 0 (#2114). 196 */ 197 if ( FCKBrowserInfo.IsIE && !FCKBrowserInfo.IsIE7 ) 198 { 199 var originalRefreshContainerSize = retval.RefreshContainerSize ; 200 retval.RefreshContainerSize = function() 201 { 202 FCKTools.SetTimeout( originalRefreshContainerSize, 1, retval ) ; 203 } 204 } 205 193 206 window.onresize = function() 194 207 { 195 208 retval.RefreshContainerSize() ;