From f5d3996e13a4f83d070f40a7338cc81fab0070bc Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 21 Dec 2021 07:21:35 -0600 Subject: [PATCH] Revert the Safari click fix for now --- macrovision.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/macrovision.js b/macrovision.js index fc90665f..16d08f94 100644 --- a/macrovision.js +++ b/macrovision.js @@ -2051,10 +2051,12 @@ function rotate(point, angle) { const testCtx = testCanvas.getContext("2d"); function testClick(event) { - if (navigator.userAgent.indexOf("Safari") >= 0) { - clickDown(event.target.parentElement, event.clientX, event.clientY); - return; - } + // TODO: Find a way to do this correctly. + + // if (navigator.userAgent.indexOf("Safari") >= 0) { + // clickDown(event.target.parentElement, event.clientX, event.clientY); + // return; + // } testCtx.save();