From 7edc75e87e4fd5964de1c009bf8f5c4fe541d720 Mon Sep 17 00:00:00 2001 From: UltraQbik Date: Sat, 31 Aug 2024 16:20:39 +0300 Subject: delete js, cuz it's garbage --- www/js-test.html | 21 --------------------- www/scripts/test.js | 14 -------------- 2 files changed, 35 deletions(-) delete mode 100644 www/js-test.html delete mode 100644 www/scripts/test.js diff --git a/www/js-test.html b/www/js-test.html deleted file mode 100644 index ccc6db8..0000000 --- a/www/js-test.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - The YES's Page - - - - -
-
-
The Mighty HTML Page. Ew JS
-
-
- -
- - - - diff --git a/www/scripts/test.js b/www/scripts/test.js deleted file mode 100644 index e9afd91..0000000 --- a/www/scripts/test.js +++ /dev/null @@ -1,14 +0,0 @@ -const canvas = document.getElementById("JSCanvas"); -const ctx = canvas.getContext("2d"); - -function draw() { - ctx.strokeStyle = "#" + Math.floor(Math.random() * 16777216).toString(16).padStart(6, '0') - ctx.beginPath(); - ctx.moveTo(Math.random() * 511, Math.random() * 511); - ctx.lineTo(Math.random() * 511, Math.random() * 511); - ctx.stroke(); -} - -for (let i = 0; i < 50; i++) { - draw() -} -- cgit 1.4.1