Skip to content

Commit

Permalink
fix: Fixed the label closure on demo/blockfactory (google#5833)
Browse files Browse the repository at this point in the history
* fix: Fixed the label closure on demo/blockfactory

* fix: remove </input> on demo/blockfactory
  • Loading branch information
ChrisJaunes authored Dec 21, 2021
1 parent 68d8113 commit e8ea2e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demos/blockfactory/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,19 +143,19 @@ <h3>Export Preview</h3>
<div class="dropdown">
<button id="button_importBlocks">Import Custom Blocks</button>
<div id="dropdownDiv_importBlocks" class="dropdown-content">
<input type="file" id="input_importBlocksJson" accept=".js, .json, .txt" class="inputfile"</input>
<input type="file" id="input_importBlocksJson" accept=".js, .json, .txt" class="inputfile">
<label for="input_importBlocksJson">From JSON</label>
<input type="file" id="input_importBlocksJs" accept=".js, .txt" class="inputfile"</input>
<input type="file" id="input_importBlocksJs" accept=".js, .txt" class="inputfile">
<label for="input_importBlocksJs">From Javascript</label>
</div>
</div>

<div class="dropdown">
<button id="button_load">Load to Edit</button>
<div id="dropdownDiv_load" class="dropdown-content">
<input type="file" id="input_loadToolbox" accept=".xml" class="inputfile"></input>
<input type="file" id="input_loadToolbox" accept=".xml" class="inputfile">
<label for="input_loadToolbox">Toolbox</label>
<input type="file" id="input_loadPreload" accept=".xml" class="inputfile"</input>
<input type="file" id="input_loadPreload" accept=".xml" class="inputfile">
<label for="input_loadPreload">Workspace Blocks</label>
</div>
</div>
Expand Down

0 comments on commit e8ea2e9

Please sign in to comment.