Ticket #2597: 2597.patch
File 2597.patch, 1.7 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
91 91 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2516">#2516</a>] Replaced the 92 92 extension AddItem of Array with the standard "push" method.</li> 93 93 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2486">#2486</a>] Vertically splitting 94 cell with colspan > 1 breaks table layout.</li> 94 cell with colspan > 1 breaks table layout.</li> 95 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2597">#2597</a>] Fixed the issue 96 where dropping contents from outside of the editor doesn't work in Safari.</li> 95 97 </ul> 96 98 <p> 97 99 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/_source/internals/fck_gecko.js
229 229 } 230 230 else if ( FCKBrowserInfo.IsSafari ) 231 231 { 232 var cancelHandler = function( evt ){ if ( ! FCK.MouseDownFlag ) evt.returnValue = false ; } 233 this.EditorDocument.addEventListener( 'dragenter', cancelHandler, true ) ; 234 this.EditorDocument.addEventListener( 'dragover', cancelHandler, true ) ; 232 this.EditorDocument.addEventListener( 'dragover', function ( evt ) 233 { if ( !FCK.MouseDownFlag && FCK.Config.ForcePasteAsPlainText ) evt.returnValue = false ; }, true ) ; 235 234 this.EditorDocument.addEventListener( 'drop', this._ExecDrop, true ) ; 236 235 this.EditorDocument.addEventListener( 'mousedown', 237 236 function( ev )