trvswgnr / bs5-lightbox

A pure JS lightbox gallery plugin for Bootstrap 5 based on the Modal and Carousel components
https://trvswgnr.github.io/bs5-lightbox/
MIT License
133 stars 28 forks source link

Absolute paths are not working in hidden gallery: File Not Found Error #77

Open ninbit opened 6 months ago

ninbit commented 6 months ago

It seems relative paths don't work in a hidden gallery. None of the below worked:

<div data-toggle="lightbox" data-gallery="hidden-images" data-src="/img/image1.jpg" data-title="Hidden item 1"></div>
<div data-toggle="lightbox" data-gallery="hidden-images" data-src="img/image1.jpg" data-title="Hidden item 1"></div>
<div data-toggle="lightbox" data-gallery="hidden-images" data-src="./img/image1.jpg" data-title="Hidden item 1"></div>
<div data-toggle="lightbox" data-gallery="hidden-images" data-src="image1.jpg" data-title="Hidden item 1"></div>

However, when I tried an absolute path like D:\Folder\MySite\img\image1.jpg, it worked. I think there is an issue with relative paths in hidden gallery. (By the way, I'm using windows)