Skip to content

Commit

Permalink
Updated live updater
Browse files Browse the repository at this point in the history
  • Loading branch information
BornToLose committed Jul 8, 2024
1 parent bc77ee1 commit 5bee739
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion liveupdater/tpptime_script.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,12 @@ $(` <input type="button" value="é"> `).appendTo(btnbox).click(() => {
$(` <input type="button" value="É"> `).appendTo(btnbox).click(() => {
textarea.value += "É"
});
$(` <input type="button" value="ñ"> `).appendTo(btnbox).click(() => {
textarea.value += "ñ"
});
$(` <input type="button" value="Ñ"> `).appendTo(btnbox).click(() => {
textarea.value += "Ñ"
});
/*$(` <br/> `).appendTo(btnbox);
$(` <input type="button" value="◎"> `).appendTo(btnbox).click(() => {
textarea.value += "◎"
Expand Down Expand Up @@ -231,7 +237,6 @@ $(` <input type="button" value="⇒"> `).appendTo(btnbox).click(() => {
$(` <input type="button" value="⇔"> `).appendTo(btnbox).click(() => {
textarea.value += "⇔"
});
$(` <br/> `).appendTo(btnbox);
$(` <input type="button" value="₵"> `).appendTo(btnbox).click(() => {
textarea.value += "₵"
});
Expand Down

0 comments on commit 5bee739

Please sign in to comment.