From 8937e9f292081b756ccb288b4fca49b1cea84f22 Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Fri, 4 Mar 2022 10:29:34 +0100 Subject: [PATCH] fix: disable external image lightbox --- assets/ts/gallery.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/ts/gallery.ts b/assets/ts/gallery.ts index 218658d..9840f1e 100644 --- a/assets/ts/gallery.ts +++ b/assets/ts/gallery.ts @@ -61,7 +61,7 @@ class StackGallery { /// because it can not detect whether image is being wrapped by a link or not /// and it lead to a invalid HTML construction (
) - const images = container.querySelectorAll('img'); + const images = container.querySelectorAll('img.gallery-image'); for (const img of Array.from(images)) { /// Images are wrapped with figure tag if the paragraph has only images without texts /// This is done to allow inline images within paragraphs