You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 15, 2021. It is now read-only.
The Lightbox code only checks if the extension of the image is in lowercase.
Solution:
Change
if(s.match(/\.(jpeg|jpg|gif|png)$/)!=null)Into:
if(s.match(/\.(jpeg|JPEG|jpg|JPG|gif|GIF|png|PNG)$/)!=null)Solution found here: http://stackoverflow.com/questions/19961569/nivo-lightbox-adding-tags-to-image-to-make-them-iframes
Can someone please add this as pull request? Thanks!