diff options
author | 2022-04-03 16:02:57 -0300 | |
---|---|---|
committer | 2022-04-03 14:02:57 -0500 | |
commit | dc6e89f0a32952568def085a7c6eb79fae697303 (patch) | |
tree | 0312982227102e618f6f2f239f4bf25e32625f4c /examples/integrations-playground/src | |
parent | dff89a0fa3d51d1473e8a19b000ba8a76261d060 (diff) | |
download | astro-dc6e89f0a32952568def085a7c6eb79fae697303.tar.gz astro-dc6e89f0a32952568def085a7c6eb79fae697303.tar.zst astro-dc6e89f0a32952568def085a7c6eb79fae697303.zip |
chore: updated examples to v0.26.0 (#2977)
* New script behavior
* Astro.request
* Reverted `deno` to `node`
* Updated subpath
Diffstat (limited to 'examples/integrations-playground/src')
-rw-r--r-- | examples/integrations-playground/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/integrations-playground/src/pages/index.astro b/examples/integrations-playground/src/pages/index.astro index 677026072..2ee717d6a 100644 --- a/examples/integrations-playground/src/pages/index.astro +++ b/examples/integrations-playground/src/pages/index.astro @@ -38,7 +38,7 @@ import '../components/Counter.js'; console.log('end partytown blocking script') </script> - <script> + <script is:inline> setInterval(() => { const randomColor = Math.floor(Math.random()*16777215).toString(16); document.querySelector('.partytown-status').style.color = "#" + randomColor; |