docs: Move Luau.Web.js fetch to the end of the page

This was moved in the CodeMirror change, but that may break Module setup in the embedded <script> block, so move it back.
This commit is contained in:
Arseny Kapoulkine 2022-01-04 15:04:25 -08:00 committed by GitHub
parent fa35884e5b
commit 73b7bcb2da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,6 @@
}
</style>
<!-- Luau WASM (async fetch) -->
<script async src="https://github.com/Roblox/luau/releases/latest/download/Luau.Web.js"></script>
<!-- CodeMirror -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.0/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.0/addon/edit/matchbrackets.min.js"></script>
@ -98,3 +96,5 @@
}
}
</script>
<!-- Luau WASM (async fetch; should be the last line) -->
<script async src="https://github.com/Roblox/luau/releases/latest/download/Luau.Web.js"></script>