-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
316 additions
and
329 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
<link rel="icon" href="/fallen-leaf_1f342.ico" type="image/x-icon"> | ||
<link rel="stylesheet" | ||
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" /> | ||
<script type="module" crossorigin src="/assets/main-6f9a85eb.js"></script> | ||
<script type="module" crossorigin src="/assets/main-6fd94417.js"></script> | ||
</head> | ||
|
||
<body class="embed"> | ||
|
@@ -41,7 +41,7 @@ | |
</button> | ||
</div> | ||
<div class="right-group"> | ||
<button id="resetButton" class="embed-button" title="Reset the example code"> | ||
<button id="resetButton" class="embed-button" title="Reset the initial code"> | ||
Reset <span class="material-symbols-rounded reset">restart_alt</span> | ||
</button> | ||
<button id="newWindow" class="embed-button" title="Open in new Praxly window"> | ||
|
@@ -76,8 +76,8 @@ | |
|
||
</div> | ||
|
||
<div class="debugModal"> | ||
<div class="debugModal-content"> | ||
<div class="resetModal"> | ||
<div class="resetModal-content"> | ||
<h2>Are you sure you want to reset?</h2> | ||
<p>Resetting will remove any changes you made AND clear both the output and variables table.</p> | ||
<div class="answerOptions"> | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
<link rel="icon" href="/fallen-leaf_1f342.ico" type="image/x-icon"> | ||
<link rel="stylesheet" | ||
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" /> | ||
<script type="module" crossorigin src="/assets/main-6f9a85eb.js"></script> | ||
<script type="module" crossorigin src="/assets/main-6fd94417.js"></script> | ||
</head> | ||
|
||
<body> | ||
|
@@ -72,21 +72,21 @@ <h3>Example Programs</h2> | |
<!-- Toolbar buttons --> | ||
<ul> | ||
<li> | ||
<button id="runButton" class="MainMenu-button" title="Run Code"> | ||
<span class="material-symbols-rounded run">play_arrow</span> | ||
<span class="button-text">Run Code</span> | ||
<button id="runButton" class="MainMenu-button" title="Run the entire program"> | ||
Run <span class="material-symbols-rounded run">play_arrow</span> | ||
<!-- <span class="button-text">Run Code</span> --> | ||
</button> | ||
</li> | ||
<li> | ||
<button id="debugButton" class="MainMenu-button" title="Debugger"> | ||
<span class="material-symbols-rounded bug">pest_control</span> | ||
<span class="button-text">Debug Mode</span> | ||
<button id="debugButton" class="MainMenu-button" title="Run one step at a time"> | ||
Debug <span class="material-symbols-rounded bug">pest_control</span> | ||
<!-- <span class="button-text">Debug Mode</span> --> | ||
</button> | ||
</li> | ||
<li> | ||
<button id="stepButton" class="MainMenu-button debugOptions" title="Step Over"> | ||
<span class="material-symbols-rounded step">tools_ladder</span> | ||
<span class="button-text">Step Over</span> | ||
<button id="stepButton" class="MainMenu-button debugOptions" title="Run the next step"> | ||
Step <span class="material-symbols-rounded step">step</span> | ||
<!-- <span class="button-text">Step Over</span> --> | ||
</button> | ||
</li> | ||
<li> | ||
|
@@ -95,21 +95,21 @@ <h3>Example Programs</h2> | |
</button> | ||
</li> | ||
<li> | ||
<button id="stopButton" class="MainMenu-button debugOptions" title="Stop Debugger"> | ||
<span class="material-symbols-rounded stop">stop</span> | ||
<span class="button-text">Exit Debug</span> | ||
<button id="stopButton" class="MainMenu-button debugOptions" title="Exit the debugger"> | ||
Exit <span class="material-symbols-rounded stop">stop</span> | ||
<!-- <span class="button-text">Exit Debug</span> --> | ||
</button> | ||
</li> | ||
<li> | ||
<button id="share" class="MainMenu-button" title="Share"> | ||
<span class="material-symbols-rounded spread">share</span> | ||
<span class="button-text">Share</span> | ||
<button id="share" class="MainMenu-button" title="Create link for sharing"> | ||
Share <span class="material-symbols-rounded share">share</span> | ||
<!-- <span class="button-text">Share</span> --> | ||
</button> | ||
</li> | ||
<li> | ||
<button id="reference" class="MainMenu-button" title="reference"> | ||
<span class="material-symbols-rounded manual">book_2</span> | ||
<span class="button-text">Manual</span> | ||
<button id="reference" class="MainMenu-button" title="Open the Pseudocode Notation"> | ||
Manual <span class="material-symbols-rounded manual">book_2</span> | ||
<!-- <span class="button-text">Manual</span> --> | ||
</button> | ||
</li> | ||
<li class="settingsOptions"> | ||
|
@@ -129,9 +129,9 @@ <h3>Example Programs</h2> | |
</button> | ||
</li> | ||
<li> | ||
<button id="clearButton" class="MainMenu-button"> | ||
<span class="material-symbols-rounded reset">delete</span> | ||
<span class="button-text">Clear</span> | ||
<button id="resetButton" class="MainMenu-button" title="Reset the initial code"> | ||
Reset <span class="material-symbols-rounded reset">restart_alt</span> | ||
<!-- <span class="button-text">Clear</span> --> | ||
</button> | ||
</li> | ||
</ul> | ||
|
@@ -167,6 +167,17 @@ <h3>Example Programs</h2> | |
</div> | ||
</div> | ||
|
||
<div class="resetModal"> | ||
<div class="resetModal-content"> | ||
<h2>Are you sure you want to reset?</h2> | ||
<p>Resetting will remove any changes you made AND clear both the output and variables table.</p> | ||
<div class="answerOptions"> | ||
<button id="yes">Yes</button> | ||
<button id="no">No</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</body> | ||
|
||
|
Oops, something went wrong.