Ticket #4003: 4003.patch
File 4003.patch, 1.4 KB (added by , 14 years ago) |
---|
-
_source/skins/office2003/skin.js
46 46 return; 47 47 48 48 // Fix the size of the elements which have flexible lengths. 49 setTimeout(function()49 var fixSize = function() 50 50 { 51 51 var content = dialog.parts.contents, 52 52 body = content.getParent(), … … 67 67 // mr 68 68 el = innerDialog.getChild( 5 ); 69 69 el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' ); 70 }, 71 100 ); 70 }; 71 setTimeout( fixSize, 100 ); 72 73 // Ensure size is correct for RTL mode. (#4003) 74 if ( evt.editor.lang.dir == 'rtl' ) 75 setTimeout( fixSize, 1000 ); 72 76 }); 73 77 } -
CHANGES.html
178 178 <li><a href="http://dev.fckeditor.net/ticket/4094">#4094</a> : Smiley plugin file</li> 179 179 </ul></li> 180 180 <li><a href="http://dev.fckeditor.net/ticket/4085">#4085</a> : Paste and Paste from Word dialogs were not well styled in IE+RTL.</li> 181 <li><a href="http://dev.fckeditor.net/ticket/4003">#4003</a> : Markup on the image dialog was disrupted when removing the border input.</li> 181 182 </ul> 182 183 <h3> 183 184 CKEditor 3.0 RC</h3>