Changes between Initial Version and Version 1 of Ticket #10031, comment 24
- Timestamp:
- Sep 23, 2016, 7:41:22 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10031, comment 24
initial v1 3 3 THB, I don't understand in what situation it's not possible to use `getData()` immediately when destroying editor and replacing what was left after editor destruction with the editor data. If you destroy them, then it should be a small change: 4 4 5 ``` 5 {{{ 6 6 var data = editor.getData(); 7 7 editor.destroy(); 8 8 elementWhichEditorOccupied.innerHTML = data; 9 ``` 9 }}}