Changeset 4866
- Timestamp:
- 12/31/09 15:55:38 (3 years ago)
- File:
-
- 1 edited
-
CKEditor/trunk/_source/plugins/maximize/plugin.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/maximize/plugin.js
r4858 r4866 166 166 } 167 167 168 // Scroll to the top left. 169 mainWindow.$.scrollTo( 0, 0 ); 168 // Scroll to the top left (IE needs some time for it - #4923). 169 CKEDITOR.env.ie ? 170 setTimeout( function() { mainWindow.$.scrollTo( 0, 0 ); }, 0 ) : 171 mainWindow.$.scrollTo( 0, 0 ); 170 172 171 173 // Resize and move to top left. … … 213 215 214 216 // Restore the window scroll position. 215 mainWindow.$.scrollTo( outerScroll.x, outerScroll.y ); 217 CKEDITOR.env.ie ? 218 setTimeout( function() { mainWindow.$.scrollTo( outerScroll.x, outerScroll.y ); }, 0 ) : 219 mainWindow.$.scrollTo( outerScroll.x, outerScroll.y ); 216 220 217 221 // Remove cke_maximized class.
Note: See TracChangeset
for help on using the changeset viewer.
