diff --git a/3rdparty.md b/3rdparty.md index 8a00e183..fafc6cf6 100644 --- a/3rdparty.md +++ b/3rdparty.md @@ -1,6 +1,7 @@ --- layout: page title: 3rd Party Portals +search: true --- These portals are not Microsoft owned or controlled, but provide free and useful tools. diff --git a/404.md b/404.md index 216140b7..19d8f138 100644 --- a/404.md +++ b/404.md @@ -2,6 +2,7 @@ layout: page title: 404 - Page not found permalink: /404 +search: false --- Sorry, we can't find that page that you're looking for. You can try again by going [back to the homepage]({{ site.baseurl }}/). diff --git a/_includes/quickfilter.html b/_includes/quickfilter.html index edfad2f6..ac7ea048 100644 --- a/_includes/quickfilter.html +++ b/_includes/quickfilter.html @@ -127,15 +127,17 @@ }; var scriptLoaded = loadScriptAsync(); scriptLoaded.then(function () { - document.querySelectorAll(window.location.hash).forEach(function (anchorLink) { - if (anchorLink.parentNode.hidden === false) { - anchorLink.scrollIntoView({ - preventScroll: true, - behavior: "smooth", - block: "start", - }); - } - }); + if (window.location.hash != "") { + document.querySelectorAll(window.location.hash).forEach(function (anchorLink) { + if (anchorLink.parentNode.hidden === false) { + anchorLink.scrollIntoView({ + preventScroll: true, + behavior: "smooth", + block: "start", + }); + } + }); + } }); }; diff --git a/_layouts/default.html b/_layouts/default.html index d7743247..fb6dae27 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -50,13 +50,7 @@