Ticket #2597 (closed Bug: fixed)
Safari: drop from outside the editor is disabled
| Reported by: | alfonsoml | Owned by: | martinkou |
|---|---|---|---|
| Priority: | Normal | Milestone: | FCKeditor 2.6.4 |
| Component: | General | Version: | FCKeditor 2.5 Beta |
| Keywords: | Confirmed Safari Review+ | Cc: |
Description
Since the introduction of [589] the external drop of elements in FCKeditor is disabled in Safari.
That's meant to respect the ForcePasteAsPlainText setting, but every drop is always disabled in this code:
var cancelHandler = function( evt ){ evt.returnValue = false ; }
this.EditorDocument.addEventListener( 'dragenter', cancelHandler, true ) ;
this.EditorDocument.addEventListener( 'dragover', cancelHandler, true ) ;
this.EditorDocument.addEventListener( 'drop', this._ExecDrop, true ) ;
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
