Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9130a812 authored by smain@google.com's avatar smain@google.com Committed by Android Git Automerger
Browse files

am 7f37fba6: am 19c6780f: Merge "fix scroll offset when loading non-header pages" into lmp-dev

* commit '7f37fba6':
  fix scroll offset when loading non-header pages
parents e5f5d5a1 7f37fba6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2538,6 +2538,9 @@ google.setOnLoadCallback(function(){
/* Adjust the scroll position to account for sticky header, only if the hash matches an id.
   This does not handle <a name=""> tags. Some CSS fixes those, but only for reference docs. */
function offsetScrollForSticky() {
  // Ignore if there's no search bar (some special pages have no header)
  if ($("#search-container").length < 1) return;

  var hash = escape(location.hash.substr(1));
  var $matchingElement = $("#"+hash);
  // Sanity check that there's an element with that ID on the page