Changes between Initial Version and Version 1 of Ticket #99
- Timestamp:
- Feb 22, 2007, 9:49:27 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #99 – Description
initial v1 1 1 Test step: 2 1. EnterMode='p' in config.js 3 2. have this content in "source" view: <div>abc</div> 4 3. in fckeditor view, put the cursor after 'ab', and press enter. 5 4. Check content in "source" view, 6 It is 2 3 1. EnterMode='p' in config.js 4 1. have this content in "source" view: <div>abc</div> 5 1. in fckeditor view, put the cursor after 'ab', and press enter. 6 1. Check content in "source" view, 7 8 Result: 9 10 {{{ 7 11 <div>ab</div> 8 12 <div>c</div> 13 }}} 14 9 15 There is NO <p> tag as expected. 10 16 … … 12 18 13 19 <div>abc</div> always get <div> when press Enter, doesn't matter EnterMode; 20 14 21 <p>abc</p> always get <p> when press Enter, doesn't matter EnterMode;