mirror of
https://github.com/google/blockly.git
synced 2026-01-07 09:00:11 +01:00
Refactor of interpreter demo * Renamed demos/interpreter/index.html as demos/interpreter/step-execution.html (including redirect), and added demos/interpreter/async-execution.html. * Refactored code to automatically generate/parse the blocks, eliminating the need for a "Parse JavaScript" button. Code is still shown in alert upon stepping to the first statement. Print statements now write to output <textarea> instead of modal dialogs.
12 lines
272 B
HTML
12 lines
272 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Redirecting...</title>
|
|
<meta http-equiv="refresh" content="0;URL='step-execution.html'"/>
|
|
</head>
|
|
<body>
|
|
Redirecting to <a href="step-execution.html">step execution jsinterpreter demo</a>.
|
|
</body>
|
|
</html>
|