Changes between Version 2 and Version 3 of Ticket #10752, comment 1
- Timestamp:
- Nov 30, 2016, 12:51:36 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10752, comment 1
v2 v3 1 1 I have tried your code and I was able to reproduce this problem only in IE10 and only in Windows 7 (IE10 on win 8 works fine). 2 2 3 This is in deed weird issue but to workaround it you can just use setTimeout with timeout of 0 , 10 or 100.3 This is in deed weird issue but to workaround it you can just use setTimeout with timeout of 0. 4 4 {{{ 5 5 _editor.execCommand('maximize'); 6 6 setTimeout(function(){loadPage('http://localhost/doc/WebPage/Parts/index.html', function (data) { 7 _editor.setData(data);}, 10);//0, 10, 1007 _editor.setData(data);}, 0); 8 8 }); 9 9 }}}