Revert "Fixed instant loading jumping back to the top"

This reverts commit f480bb28a9.
This commit is contained in:
squidfunk 2023-02-10 19:56:36 +01:00
parent f480bb28a9
commit f00cd81f89
4 changed files with 6 additions and 7 deletions

View File

@ -240,7 +240,7 @@
</script> </script>
{% endblock %} {% endblock %}
{% block scripts %} {% block scripts %}
<script src="{{ 'assets/javascripts/bundle.16752b02.min.js' | url }}"></script> <script src="{{ 'assets/javascripts/bundle.56494524.min.js' | url }}"></script>
{% for path in config.extra_javascript %} {% for path in config.extra_javascript %}
<script src="{{ path | url }}"></script> <script src="{{ path | url }}"></script>
{% endfor %} {% endfor %}

View File

@ -206,7 +206,6 @@ export function setupInstantLoading(
sample(response$) sample(response$)
) )
.subscribe(({ url }) => { .subscribe(({ url }) => {
console.log("history.pushState")
history.pushState({}, "", `${url}`) history.pushState({}, "", `${url}`)
}) })
@ -289,7 +288,7 @@ export function setupInstantLoading(
sample(document$) sample(document$)
) )
.subscribe(({ url, offset }) => { .subscribe(({ url, offset }) => {
if (url.hash && !offset?.y) { if (url.hash && !offset) {
setLocationHash(url.hash) setLocationHash(url.hash)
} else { } else {
window.scrollTo(0, offset?.y || 0) window.scrollTo(0, offset?.y || 0)