make scrolling to top on initial load of download page work again

This commit is contained in:
Anton Keks 2018-03-03 19:27:31 +02:00
parent de1a96d32c
commit b3039fdfa7

View File

@ -151,15 +151,17 @@ redirect_from: /w/Download/
</section>
</div>
<script type="text/javascript">
<script>
(function() {
window.onhashchange = function() {
window.scrollTo(0, 0);
};
if (location.hash) return;
var oses = ['Linux', 'Mac', 'Windows'];
for (var i in oses) {
var os = oses[i];
if (navigator.userAgent.indexOf(os) > 0) {
location.hash = os.toLowerCase();
setTimeout(function() {window.scrollTo(0, 0);}, 0);
}
}
})();