Use sveltekit:noscroll/prefetch on internal links

This commit is contained in:
2021-11-17 19:25:40 +01:00
parent 8a53079fa1
commit ac40eedb2f
10 changed files with 16 additions and 12 deletions

View File

@@ -62,7 +62,7 @@
<section class="shop-page__intro" bind:this={introEl}>
<div class="top container">
<a href="/" class="back">
<a href="/" class="back" sveltekit:noscroll>
<svg width="5" height="8" viewBox="0 0 5 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 1 1 4l3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
@@ -83,7 +83,7 @@
<ul>
{#each $shopLocations as { name, slug }}
<li class:is-active={slug === product.location.slug}>
<a href="/shop/poster-{slug}" sveltekit:noscroll sveltekit:prefetch>
<a href="/shop/poster-{slug}" sveltekit:prefetch sveltekit:noscroll>
{name}
</a>
</li>