This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Archi Script: Find or Create Element | |
* | |
* This script provides a user interface for finding existing elements | |
* or creating new elements in Archi diagrams. It uses a custom SelectionPalette | |
* to display and filter elements, and allows for quick element creation and placement. | |
* | |
* Element will be placed at the location of the cursor. | |
* | |
* Personally I have mapped this to cmd+p. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="goals"> | |
<div class="goal goal-red" data-goal="red" ></div> | |
<div class="goal goal-green" data-goal="green"></div> | |
<div class="goal goal-blue" data-goal="blue"></div> | |
<div class="goal goal-yellow" data-goal="yellow"></div> | |
</div> | |
<div class="start" onClick="start()">START</div> | |
<h1 id="score"></h1> |