Changes between Initial Version and Version 1 of Ticket #14659, comment 7
- Timestamp:
- Aug 12, 2016, 1:28:04 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14659, comment 7
initial v1 7 7 1. Go to the div editing area demo: http://ckeditor.com/demo#div. 8 8 1. Scroll down a bit within the content of the editor. 9 1. Run CKEDITOR.instances.editor1.getSelection( true ).getRanges()- it should return empty array which means there is no active selection inside editor area.10 1. Run CKEDITOR.instances.editor1.editable().$.focus()in the dev console.9 1. `Run CKEDITOR.instances.editor1.getSelection( true ).getRanges()` - it should return empty array which means there is no active selection inside editor area. 10 1. `Run CKEDITOR.instances.editor1.editable().$.focus()` in the dev console. 11 11 12 12 In the above case the editor viewport is scrolled to the top. … … 15 15 1. Scroll down a bit within the content of the editor. 16 16 1. Focus the cursor within the editor. 17 1. Run CKEDITOR.instances.editor1.getSelection( true ).getRanges()- it should return array with one range which means there is active selection inside editor area.18 1. Run CKEDITOR.instances.editor1.editable().$.focus()in the dev console.17 1. `Run CKEDITOR.instances.editor1.getSelection( true ).getRanges()` - it should return array with one range which means there is active selection inside editor area. 18 1. `Run CKEDITOR.instances.editor1.editable().$.focus()` in the dev console. 19 19 20 20 In the above case the editor viewport does not scroll.