mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-08-28 22:10:31 -04:00
If a block only has one field, the mouseup event (which triggers editing of editable fields) will be bound to the block instead of the field. Fixes #132.
23 lines
817 B
HTML
23 lines
817 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Unit Tests for Horizontal Scratch-Blockly</title>
|
|
<script src="../../blockly_uncompressed_horizontal.js"></script>
|
|
<script>goog.require('goog.testing.jsunit');</script>
|
|
</head>
|
|
<body>
|
|
<script src="blockly_test.js"></script>
|
|
<script src="block_test.js"></script>
|
|
<script src="connection_test.js"></script>
|
|
<script src="connection_db_test.js"></script>
|
|
<script src="generator_test.js"></script>
|
|
<script src="names_test.js"></script>
|
|
<script src="workspace_test.js"></script>
|
|
<script src="xml_test.js"></script>
|
|
<script src="svg_test.js"></script>
|
|
|
|
<div id="blocklyDiv" style="display: none; height: 480px; width: 600px;"></div>
|
|
<xml id="toolbox" style="display: none"></xml>
|
|
</body>
|
|
</html>
|