From a5e72049c586bb4d3098b5f89da74d3ebad21c79 Mon Sep 17 00:00:00 2001 From: danielRedacted Date: Tue, 3 Sep 2024 14:10:25 -0700 Subject: [PATCH] undo canvas mirror, monospace font --- contact.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contact.html b/contact.html index 967eac5..f5ea34e 100644 --- a/contact.html +++ b/contact.html @@ -567,8 +567,8 @@ const ctx = canvasElement.getContext('2d'); // Mirror the canvas horizontally - ctx.translate(canvas.width, 0); // Move the canvas origin (0,0) to the far right - ctx.scale(-1, 1); // Flip the canvas horizontally + // ctx.translate(canvas.width, 0); // Move the canvas origin (0,0) to the far right + // ctx.scale(-1, 1); // Flip the canvas horizontally // Set canvas dimensions to match the window size canvasElement.width = window.innerWidth;