From 518adb3f021884194a83aa7cb8ef86797acc89bd Mon Sep 17 00:00:00 2001 From: NP Viroonc Date: Sun, 6 Oct 2024 14:47:04 -0700 Subject: [PATCH] fix: lightgallery feature Add missing comma at the end of lines 2 and 3. fix #160 --- apaxy/theme/apaxy-lightgallery.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apaxy/theme/apaxy-lightgallery.js b/apaxy/theme/apaxy-lightgallery.js index b4ace30..f2a1701 100644 --- a/apaxy/theme/apaxy-lightgallery.js +++ b/apaxy/theme/apaxy-lightgallery.js @@ -1,6 +1,6 @@ var imageSelector = [ - 'tr:not(.parent) td.indexcolname a[href$=".gif"]' - 'tr:not(.parent) td.indexcolname a[href$=".GIF"]' + 'tr:not(.parent) td.indexcolname a[href$=".gif"]', + 'tr:not(.parent) td.indexcolname a[href$=".GIF"]', 'tr:not(.parent) td.indexcolname a[href$=".heic"]', 'tr:not(.parent) td.indexcolname a[href$=".HEIC"]', 'tr:not(.parent) td.indexcolname a[href$=".jpg"]',