mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
fix repl.js 404
This commit is contained in:
parent
8eee683f7f
commit
4643b3c0b3
2 changed files with 2 additions and 2 deletions
|
@ -43,4 +43,4 @@
|
|||
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.30.1/min/vs/editor/editor.main.js"></script>
|
||||
|
||||
<script async src="https://github.com/Roblox/luau/releases/latest/download/Luau.Web.js"></script>
|
||||
<script type="text/javascript" src="/assets/js/repl.js"></script>
|
||||
<script type="text/javascript" src="../../../assets/js/repl.js"></script>
|
|
@ -217,7 +217,7 @@ function clearOutput() {
|
|||
document.getElementById("output").value = "";
|
||||
}
|
||||
|
||||
executeScript = function() {
|
||||
function executeScript() {
|
||||
if (editor) {
|
||||
var err = Module.ccall('executeScript', 'string', ['string'], [editor.getValue()]);
|
||||
if (err) {
|
||||
|
|
Loading…
Add table
Reference in a new issue