#5603 closed Bug (invalid)
PASTEFROMWORD: Should use the current editors configuration when reading config 'pasteFromWordCleanupFile'
Reported by: | mattis | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Pasting | Version: | 3.2.1 |
Keywords: | HasPatch | Cc: |
Description
In the current implementation, the pastefromword plugin loads the past from word cleanup file based on the global CKEDITOR's config object. It should use the current editor instead.
Patch supplied.
Attachments (1)
Change History (6)
Changed 15 years ago by
Attachment: | plugin.js.patch added |
---|
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Keywords: | HasPatch added |
---|
comment:3 Changed 14 years ago by
Milestone: | → CKEditor 3.5.2 |
---|
comment:4 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
It's actually by design, we believe that there should be a consistent way of processing word paste result otherwise user might get confused, the patch doesn't work as "CKEDITOR.cleanWord" - the processor function was by default made as globally shared among instances.
As a workaround, we recommend you to branch your processing logic for different editor inside the function itself:
CKEDITOR.cleanWord = function( data, editor ) { if ( editor.name == '...' ) data = ... else data = ... return data; };
comment:5 Changed 14 years ago by
Milestone: | CKEditor 3.5.3 |
---|
s/past/path