Declined
Last Updated: 16 May 2016 12:47 by ADMIN
ADMIN
Joana
Created on: 05 Jul 2013 08:23
Category: Editor
Type: Feature Request
0
FIX: When a list is pasted in another list, it should be displayed as list items of the other list
Steps to reproduce:
1. Insert two lists
<ol>
    <li>test1</li>
</ol>
<ol>
    <li>test2</li>
</ol>
2. Copy the first list
3. Insert one more list item in the second list and paste the first list
Expected:
<ol>
    <li>test1</li>
</ol>
<ol>
    <li>test2</li>
    <li>test1</li>
</ol>
Actual:
<ol>
    <li>test1</li>
</ol>
<ol>
    <li>test2</li>
    <li>
    <ol>
        <li>test1</li>
    </ol>
    </li>
</ol>
0 comments