summaryrefslogtreecommitdiff
path: root/crates/client/dist/helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'crates/client/dist/helpers.js')
-rw-r--r--crates/client/dist/helpers.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/crates/client/dist/helpers.js b/crates/client/dist/helpers.js
deleted file mode 100644
index 20b86f4..0000000
--- a/crates/client/dist/helpers.js
+++ /dev/null
@@ -1,13 +0,0 @@
-let resized = false;
-
-export async function js_track_resized_setup() {
- window.addEventListener("resize", () => {
- resized = true;
- });
-};
-
-export function js_poll_resized() {
- let ret = resized;
- resized = false;
- return ret;
-}