diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-12-17 21:41:53 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-12-17 21:41:53 +0100 |
| commit | eed21f2ed000b72cb72121e0b041edcf78b0584f (patch) | |
| tree | 5c898c7474225a217d56d17392902b1a2c150d9b | |
| parent | 9c37e114b20e6b2a2d4a34fe1f0e44c5ed3439ed (diff) | |
remove logging
| -rw-r--r-- | static/pages/shuffle/index.js | 5 |
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(); } |