diff --git a/src/core.js b/src/core.js index e1a3a6df25..4b6578fd36 100644 --- a/src/core.js +++ b/src/core.js @@ -804,7 +804,8 @@ function doScrollCheck() { try { // If IE is used, use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ - document.documentElement.doScroll("left"); + // changed to top + document.documentElement.doScroll("top"); } catch(e) { setTimeout( doScrollCheck, 1 ); return;