From a55057017984a8afdad5a727b96858c48c0c9752 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 20 Mar 2020 15:40:00 -0400 Subject: [PATCH] Fix egregious comment typo --- macrovision.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macrovision.js b/macrovision.js index 2e0c9647..e62f55fe 100644 --- a/macrovision.js +++ b/macrovision.js @@ -722,7 +722,7 @@ function testClick(event) { testCtx.drawImage(target, 0, 0, w, h); alpha = testCtx.getImageData(Math.floor(x / ratio), Math.floor(y / ratio), 1, 1).data[3]; // [0]R [1]G [2]B [3]A // If pixel is transparent, - // retrieve the element underneath and trigger it's click event + // retrieve the element underneath and trigger its click event if (alpha === 0) { const oldDisplay = target.style.display; target.style.display = "none";