Event: fix incorrect window bug with scrollTop/Left in iframes

Fixes gh-1945
Closes gh-1959
This commit is contained in:
Aditya Raghavan
2014-12-20 21:52:17 -05:00
committed by Oleg Gaidarenko
parent d6c97abb74
commit d21edb599d
2 changed files with 17 additions and 2 deletions

View File

@@ -171,8 +171,8 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(
if ( win ) {
win.scrollTo(
!top ? val : window.pageXOffset,
top ? val : window.pageYOffset
!top ? val : win.pageXOffset,
top ? val : win.pageYOffset
);
} else {