8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9becc53 commit 8dc1adeCopy full SHA for 8dc1ade
pyscriptjs/src/App.svelte
@@ -49,9 +49,12 @@
49
}
50
51
// now we call all post initializers AFTER we actually executed all page scripts
52
- for (let initializer of $postInitializers){
53
- initializer();
54
- }
+ setTimeout(() => {
+ for (let initializer of $postInitializers){
+ initializer();
55
+ }
56
+ }, 5000);
57
+
58
59
60
function toggleComponentsNavBar(evt){
@@ -61,7 +64,7 @@
61
64
</script>
62
65
63
66
<svelte:head>
- <script src="https://cdn.jsdelivr.net/pyodide/v0.19.0/full/pyodide.js" on:load={initializePyodide}></script>
67
+ <script src="https://cdn.jsdelivr.net/pyodide/v0.20.0/full/pyodide.js" on:load={initializePyodide}></script>
68
</svelte:head>
69
70
<Tailwind />
0 commit comments