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