There was an error while loading. Please reload this page.
1 parent 02099d9 commit 895709cCopy full SHA for 895709c
documentation/examples/12-svg/05-svg-transitions/App.svelte
@@ -21,7 +21,7 @@
21
22
<div class="centered" out:fly={{ y: -20, duration: 800 }}>
23
{#each 'SVELTE' as char, i}
24
-<span in:fade={{ delay: 1000 + i * 150, duration: 800 }}>{char}</span>
+<span in:fade|global={{ delay: 1000 + i * 150, duration: 800 }}>{char}</span>
25
{/each}
26
</div>
27
{/if}
sites/svelte.dev/src/lib/components/ReplWidget.svelte
@@ -5,7 +5,7 @@
5
import { theme } from '@sveltejs/site-kit/stores';
6
import { onMount } from 'svelte';
7
8
-export let version = '3';
+export let version = '4';
9
export let gist = null;
10
export let example = null;
11
export let embedded = false;
0 commit comments