Guest User

Untitled

a guest
Jan 16th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // Fix scroll offset
  2. $(window).on('DOMMouseScroll.fix-anchor', function () {
  3. $(window).off('.fix-anchor');
  4. }).on('load.fix-anchor', function () {
  5. if (location.hash.length > 1) {
  6. var scrollTo = $(':target').offset().top;
  7. scrollTo -= $('#barBottomContainer').outerHeight(true);
  8. scrollTo -= $('#tabs').outerHeight(true) || 0;
  9. $('html, body').animate({scrollTop: scrollTo}, 0);
  10. }
  11. });
Add Comment
Please, Sign In to add comment