Changes between Initial Version and Version 5 of Ticket #11753
- Timestamp:
- May 12, 2014, 12:41:36 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11753
-
Property
Status
changed from
new
toassigned
- Property Owner set to Artur Delura
-
Property
Version
changed from
to
4.3
-
Property
Status
changed from
-
Ticket #11753 – Description
initial v5 3 3 1. Open Developers console 4 4 2. Go to http://ckeditor.com/demo#widgets 5 3. Run CKEDITOR.instances.editor 2.checkDirty(); in console[[BR]]5 3. Run CKEDITOR.instances.editor3.checkDirty(); in console[[BR]] 6 6 --> returns false 7 4. Run var d1 = CKEDITOR.instances.editor 2.getData(); in console7 4. Run var d1 = CKEDITOR.instances.editor3.getData(); in console 8 8 5. Click on the apollo picture in the 2nd editor, but do not move it. 9 6. Run CKEDITOR.instances.editor 2.checkDirty(); in console[[BR]]9 6. Run CKEDITOR.instances.editor3.checkDirty(); in console[[BR]] 10 10 --> returns true 11 7. Run var d2 = CKEDITOR.instances.editor 2.getData(); in console11 7. Run var d2 = CKEDITOR.instances.editor3.getData(); in console 12 12 8. run d1 === d2 in console[[BR]] 13 13 --> returns true … … 19 19 ---- 20 20 21 Bonus: In Chrome CKEDITOR.instances.editor 3.checkDirty(); is always true after page has loaded.21 Bonus: In Chrome CKEDITOR.instances.editor4.checkDirty(); is always true after page has loaded.