Skip to content

Commit

Permalink
settings button tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
appatalks authored Jan 11, 2025
1 parent fa58c28 commit d096d82
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,6 @@
auth();
// Adjust for Mobile User Agents
mobile_txtout();
//mobile_txtmsd();

function toggleSettings() {
const settingsMenu = document.getElementById("settingsMenu");
if (settingsMenu.style.display === "none" || !settingsMenu.style.display) {
settingsMenu.style.display = "block";
} else {
settingsMenu.style.display = "none";
}
}
</script>

<!-- Original CSS -->
Expand Down Expand Up @@ -70,7 +60,6 @@


<!-- Settings Menu (initially hidden) -->

<div class="settingsMenu" id="settingsMenu">
<h3>Settings</h3>
<label for="selEngine">Engine:</label>
Expand Down Expand Up @@ -118,7 +107,6 @@ <h3>Settings</h3>
</select>
</div>


<p id="result"></p>
</div>

Expand Down Expand Up @@ -150,12 +138,10 @@ <h3>Settings</h3>

<footer>
<img id="eEgg" src="core/img/eEgg.gif" alt="Image" style="display:none;">

<div id="idText"></div>
<button style="margin: 1em;" onclick="toggleSettings()">Settings</button>
<button id="settingsButton" style="margin: 1em;" onclick="toggleSettings()">Settings</button>
<button onclick="printMaster()" aria-label="Print output">Print Output</button>
<button id="clearMessagesBtn" onclick="clearMessages()" aria-label="Clear memory">Clear Memory</button>

</footer>

</body>
Expand Down

0 comments on commit d096d82

Please sign in to comment.