Skip to content

Commit

Permalink
deploy: 61c6090
Browse files Browse the repository at this point in the history
  • Loading branch information
ellonamac committed Jul 18, 2024
1 parent 5b0c6e0 commit 3273b13
Show file tree
Hide file tree
Showing 5 changed files with 316 additions and 329 deletions.
446 changes: 214 additions & 232 deletions assets/main-6f9a85eb.js → assets/main-6fd94417.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions embed.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -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">
Expand Down Expand Up @@ -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">
Expand Down
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ <h1>Welcome to Praxly 🍂</h1>
<button class="github-button">GitHub Repo</button>
</div>

<iframe
src="/embed.html?button=both&result=both#code=%2F%2F%20Sample%20Question%208%0A%0Avoid%20swap(int%5B%5D%20arr%2C%20int%20i%2C%20int%20j)%0A%20%20%20%20int%20temp%20←%20arr%5Bi%5D%0A%20%20%20%20arr%5Bi%5D%20←%20arr%5Bj%5D%0A%20%20%20%20arr%5Bj%5D%20←%20temp%0Aend%20swap%0A%0Avoid%20sort(int%5B%5D%20arr%2C%20int%20len)%0A%20%20%20%20int%20pos%20←%200%0A%20%20%20%20while%20(pos%20<%20len)%0A%20%20%20%20%20%20%20%20if%20(pos%20%3D%3D%200)%0A%20%20%20%20%20%20%20%20%20%20%20%20pos%20←%20pos%20%2B%201%0A%20%20%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(arr%5Bpos%5D%20>%20arr%5Bpos%20-%201%5D)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pos%20←%20pos%20%2B%201%0A%20%20%20%20%20%20%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20swap(arr%2C%20pos%2C%20pos%20-%201)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pos%20←%20pos%20-%201%0A%20%20%20%20%20%20%20%20%20%20%20%20end%20if%0A%20%20%20%20%20%20%20%20end%20if%0A%20%20%20%20end%20while%0Aend%20sort%0A%0Aint%5B%5D%20numbers%20←%20%7B2%2C%201%2C%205%2C%203%2C%204%7D%0Asort(numbers%2C%205)%0A"
width="100%" height="600" allow="fullscreen" frameborder="0">
<iframe width="100%" height="580" frameborder="0"
src="/embed.html?button=both&result=both#code=%2F%2F%0A%2F%2F%20Sample%20Question%208%0A%2F%2F%0A%0Avoid%20swap(int%5B%5D%20arr%2C%20int%20i%2C%20int%20j)%0A%20%20%20%20int%20temp%20←%20arr%5Bi%5D%0A%20%20%20%20arr%5Bi%5D%20←%20arr%5Bj%5D%0A%20%20%20%20arr%5Bj%5D%20←%20temp%0Aend%20swap%0A%0Avoid%20sort(int%5B%5D%20arr%2C%20int%20len)%0A%20%20%20%20int%20pos%20←%200%0A%20%20%20%20while%20(pos%20<%20len)%0A%20%20%20%20%20%20%20%20if%20(pos%20%3D%3D%200)%0A%20%20%20%20%20%20%20%20%20%20%20%20pos%20←%20pos%20%2B%201%0A%20%20%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(arr%5Bpos%5D%20>%20arr%5Bpos%20-%201%5D)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pos%20←%20pos%20%2B%201%0A%20%20%20%20%20%20%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20swap(arr%2C%20pos%2C%20pos%20-%201)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pos%20←%20pos%20-%201%0A%20%20%20%20%20%20%20%20%20%20%20%20end%20if%0A%20%20%20%20%20%20%20%20end%20if%0A%20%20%20%20end%20while%0Aend%20sort%0A%0Aint%5B%5D%20numbers%20←%20%7B2%2C%201%2C%205%2C%203%2C%204%7D%0Asort(numbers%2C%205)%0Aprint%20numbers%0A">
</iframe>

<div class="footer">
Expand Down
55 changes: 33 additions & 22 deletions main.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand All @@ -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">
Expand All @@ -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>
Expand Down Expand Up @@ -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>

Expand Down
Loading

0 comments on commit 3273b13

Please sign in to comment.