JS-Interpreter has a hyphen.

This commit is contained in:
Neil Fraser
2022-03-01 11:12:00 -08:00
parent 03ef734721
commit 2291be14ce
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Blockly Demo: Asynchronous Execution with JS Interpreter</title>
<title>Blockly Demo: Asynchronous Execution with JS-Interpreter</title>
<script src="acorn_interpreter.js"></script>
<script src="../../blockly_compressed.js"></script>
<script src="../../blocks_compressed.js"></script>
@@ -22,11 +22,11 @@
</head>
<body>
<h1><a href="https://developers.google.com/blockly/">Blockly</a> &gt;
<a href="../index.html">Demos</a> &gt; Asynchronous Execution with JS Interpreter</h1>
<a href="../index.html">Demos</a> &gt; Asynchronous Execution with JS-Interpreter</h1>
<p>This is a demo of executing code asynchronously (e.g., waiting for delays or user input) using the JavaScript interpreter.</p>
<p>&rarr; <a href="https://developers.google.com/blockly/guides/configure-blockly/web/running-javascript#js_interpreter">More info on running code with JS Interpreter</a></p>
<p>&rarr; <a href="https://developers.google.com/blockly/guides/configure-blockly/web/running-javascript#js_interpreter">More info on running code with JS-Interpreter</a></p>
<p>
<button onclick="runCode()" id="runButton">Run JavaScript</button>
+3 -3
View File
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Blockly Demo: Step Execution with JS Interpreter</title>
<title>Blockly Demo: Step Execution with JS-Interpreter</title>
<script src="acorn_interpreter.js"></script>
<script src="../../blockly_compressed.js"></script>
<script src="../../blocks_compressed.js"></script>
@@ -21,7 +21,7 @@
</head>
<body>
<h1><a href="https://developers.google.com/blockly/">Blockly</a> &gt;
<a href="../index.html">Demos</a> &gt; Step Execution with JS Interpreter</h1>
<a href="../index.html">Demos</a> &gt; Step Execution with JS-Interpreter</h1>
<p>This is a demo of executing code step-by-step with a sandboxed JavaScript interpreter.</p>
@@ -32,7 +32,7 @@
<p>Each press of the "Step JavaScript" button will run the interpreter one step until the <code>highlightPause</code> is true.
That is, until <code>highlightBlock()</code> has highlighted the block that will be executed on the next step.</p>
<p>&rarr; <a href="https://developers.google.com/blockly/guides/configure-blockly/web/running-javascript#js_interpreter">More info on running code with JS Interpreter</a></p>
<p>&rarr; <a href="https://developers.google.com/blockly/guides/configure-blockly/web/running-javascript#js_interpreter">More info on running code with JS-Interpreter</a></p>
<p>
<button onclick="stepCode()" id="stepButton">Step JavaScript</button>