aboutsummaryrefslogtreecommitdiff
path: root/static/pages/shuffle
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-12-17 21:41:53 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-12-17 21:41:53 +0100
commiteed21f2ed000b72cb72121e0b041edcf78b0584f (patch)
tree5c898c7474225a217d56d17392902b1a2c150d9b /static/pages/shuffle
parent9c37e114b20e6b2a2d4a34fe1f0e44c5ed3439ed (diff)
remove logging
Diffstat (limited to 'static/pages/shuffle')
-rw-r--r--static/pages/shuffle/index.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/static/pages/shuffle/index.js b/static/pages/shuffle/index.js
index 6d65788..7833de4 100644
--- a/static/pages/shuffle/index.js
+++ b/static/pages/shuffle/index.js
@@ -43,7 +43,6 @@ export default class ShuffleView extends sfw.element.Container {
const strength = Math.min(1, Math.max((delta[0]**2 + delta[1]**2) / (40 ** 2), 0) / 100);
this.#drag_strength = strength;
- console.log(this.#drag_strength);
const angle_x = position[0] - window.screen.width / 2;
const angle_y = position[1] - window.screen.height * 1.2;
@@ -72,10 +71,6 @@ export default class ShuffleView extends sfw.element.Container {
this.#back_image = Image.new({ id: 'back', disabled: true }),
)
- this.ondragover = (e) => {
- console.log(e)
- }
-
this.onclick = () => this.next();
}