#8754 closed Bug (fixed)
Multiple nested lists and PasteFromWord
Reported by: | Jonathan | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 4.6.0 |
Component: | Plugin : Paste from Word | Version: | 3.6.1 |
Keywords: | Firefox | Cc: |
Description (last modified by )
When you use the PasteFromWord Command on multiple nested lists, only the first nested list is really nested after pasting.
Try with
<ol id="d65e23"> <li> toto <ol> <li> bibop</li> <li> tutut</li> </ol> </li> <li> tata <ol> <li> lolilop</li> <li> reir</li> </ol> </li> <li> tutu</li> <li> lolo</li> </ol>
on the ckeditor demo
Put the code and then copy and pastefromWord, you'll lose the second ol
I tried to fix it for my webapp and found a way. I hope i didn't break anything by doing that.
In the flattenList filter in default.js line 418 (in ckeditor 3.6.1) i just did the following code : children = element.children so that the global loop takes in acount the flattened ol/ul. Otherwise the increase of level is lost.
Change History (5)
comment:1 Changed 13 years ago by
Description: | modified (diff) |
---|---|
Keywords: | Firefox added; PasteFromWord removed |
Status: | new → confirmed |
comment:3 Changed 11 years ago by
Component: | Core : Pasting → Plugin : Paste from Word |
---|
comment:4 Changed 8 years ago by
Resolution: | → fixed |
---|---|
Status: | confirmed → closed |
Fixed with new Paste From Word plugin in 4.6.0.
comment:5 Changed 8 years ago by
Milestone: | → CKEditor 4.6.0 |
---|
Ticket described here is reproducible only in Firefox and only when using pasteFromWord.
Revisions when is got broken are the same as described in #8103 so this may be a DUPLICATE.