Ticket #2753: 2753.patch
File 2753.patch, 1.3 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
124 124 configuration option didn't work correctly in Safari and Chrome.</li> 125 125 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2696">#2696</a>] Fixed non-working 126 126 autogrow plugin.</li> 127 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2753">#2753</a>] Fixed ocassional 128 exceptions in the dragersizetable plugin with IE.</li> 127 129 </ul> 128 130 <p> 129 131 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/plugins/dragresizetable/fckplugin.js
517 517 backgroundImage : 'none', 518 518 border : '0' 519 519 } ) ; 520 }, 521 "Reset" : function() 522 { 523 FCKDragTableHandler._LeftCell = FCKDragTableHandler._RightCell = FCKDragTableHandler._TableMap = null ; 520 524 } 521 525 522 526 }; 523 527 524 528 FCK.Events.AttachEvent( "OnMouseMove", FCKDragTableHandler.MouseMoveListener ) ; 529 FCK.Events.AttachEvent( "OnAfterSetHTML", FCKDragTableHandler.Reset ) ;