From bf41fae2aa7473ece32f0a903f7968373e7416d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Fri, 27 May 2022 14:44:27 +0200 Subject: [PATCH] fix: moved script to pixel.js --- src/main/webapp/index.html | 6 ------ src/main/webapp/pixels.js | 9 +++++++++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 019e08b..da4239c 100644 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -7,12 +7,6 @@ - diff --git a/src/main/webapp/pixels.js b/src/main/webapp/pixels.js index 85a6c23..bbeaf6f 100644 --- a/src/main/webapp/pixels.js +++ b/src/main/webapp/pixels.js @@ -222,3 +222,12 @@ function updatePixelBuyPreview(pixel) { } initBuyPixel(); + +///////////////////////// +// LoginSignup stuff ? // +///////////////////////// + +function toggleLoginSignup(l, s) { + document.getElementById("show-login").checked = l; + document.getElementById("show-signup").checked = s; +}