Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(mdUtil): disableBodyScroll no longer scrolls page to top in IE
Browse files Browse the repository at this point in the history
fixes #4640, fixes #5334, fixes #3627
  • Loading branch information
Patrik-Lundqvist authored and rschmukler committed Nov 20, 2015
1 parent ee4ab18 commit badc1ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/util/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ function UtilFactory($document, $timeout, $compile, $rootScope, $$mdAnimate, $in
body.setAttribute('style', restoreBodyStyle);
htmlNode.setAttribute('style', restoreHtmlStyle);
body.scrollTop = scrollOffset;
htmlNode.scrollTop = scrollOffset;
};
}

Expand Down

0 comments on commit badc1ef

Please sign in to comment.