aboutsummaryrefslogtreecommitdiff
path: root/src-ui/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src-ui/src/main.ts')
-rw-r--r--src-ui/src/main.ts34
1 files changed, 17 insertions, 17 deletions
diff --git a/src-ui/src/main.ts b/src-ui/src/main.ts
index 6eaee030..c4a69554 100644
--- a/src-ui/src/main.ts
+++ b/src-ui/src/main.ts
@@ -14,9 +14,9 @@ var globalState = {
document.addEventListener("DOMContentLoaded", async function () {
// get the elements
- const helloEl = $("div.hello")! as HTMLElement;
- let counterButtonEl = $("counter-button") as HTMLElement;
- let counterResultEl = $("counter-result") as HTMLElement;
+ // const helloEl = $("div.hello")! as HTMLElement;
+ // let counterButtonEl = $("counter-button") as HTMLElement;
+ // let counterResultEl = $("counter-result") as HTMLElement;
let pingEl = $("backend-ping")! as HTMLElement;
let panicButtonEl = $("panic-button") as HTMLElement;
let installLocationHolderEl = $("install-location-holder") as HTMLElement;
@@ -84,20 +84,20 @@ document.addEventListener("DOMContentLoaded", async function () {
alert("TODO");
});
- // counter button click
- counterButtonEl.addEventListener("pointerup", async function () {
- const result = await invoke("add_count", { num: 1 }) as string;
- counterResultEl.textContent = result;
- });
-
- // hello click
- helloEl.addEventListener("pointerup", async function () {
- const result = await invoke("hello_world") as string;
- helloEl.textContent = result;
- setTimeout(function () {
- helloEl.textContent = "Click again";
- }, 1000);
- })
+ // // counter button click
+ // counterButtonEl.addEventListener("pointerup", async function () {
+ // const result = await invoke("add_count", { num: 1 }) as string;
+ // counterResultEl.textContent = result;
+ // });
+
+ // // hello click
+ // helloEl.addEventListener("pointerup", async function () {
+ // const result = await invoke("hello_world") as string;
+ // helloEl.textContent = result;
+ // setTimeout(function () {
+ // helloEl.textContent = "Click again";
+ // }, 1000);
+ // })
// panic button click
panicButtonEl.addEventListener("pointerup", async function () {