Disallow the feed icon from the image zooming.

This commit is contained in:
Maurice Parker 2020-04-28 21:03:21 -05:00
parent c1bb75f21e
commit 5e4ebb7298
1 changed files with 1 additions and 1 deletions

View File

@ -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 {