From 5e4ebb7298a97d4c969f5015018ee01ae3516861 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Tue, 28 Apr 2020 21:03:21 -0500 Subject: [PATCH] Disallow the feed icon from the image zooming. --- iOS/Resources/main_ios.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/Resources/main_ios.js b/iOS/Resources/main_ios.js index 986d0a77e..a3dba0b9a 100644 --- a/iOS/Resources/main_ios.js +++ b/iOS/Resources/main_ios.js @@ -96,7 +96,7 @@ class ImageViewer { // Add the click listener for images window.onclick = function(event) { - if (event.target.matches("img")) { + if (event.target.matches("img") && event.target.id != "nnwImageIcon") { if (activeImageViewer && activeImageViewer.img === event.target) { cancelImageLoad(); } else {