aboutsummaryrefslogtreecommitdiff
path: root/static/pages/shuffle/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/pages/shuffle/index.js')
-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();
}