This commit is contained in:
parent
2df6ffa5f4
commit
bc1a2623e7
1 changed files with 5 additions and 4 deletions
|
@ -1,8 +1,9 @@
|
||||||
<script>
|
<script lang="ts">
|
||||||
import { onDestroy, onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
export let message = "L'applicazione è pronta per funzionare offline!";
|
export let message = "L'applicazione è pronta per funzionare offline!";
|
||||||
|
|
||||||
let show = false;
|
let show = false;
|
||||||
let nodeRef;
|
let nodeRef: HTMLDivElement;
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -10,7 +11,7 @@
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
show = false;
|
show = false;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
nodeRef.parentNode.removeChild(nodeRef);
|
nodeRef?.parentNode?.removeChild(nodeRef);
|
||||||
}, 5000);
|
}, 5000);
|
||||||
}, 5000);
|
}, 5000);
|
||||||
}, 0);
|
}, 0);
|
||||||
|
|
Loading…
Reference in a new issue