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
Having same issue here. It creates a huge area for the left/right side arrow holders which if user is trying to click the close button, it just moves forward to the next image.
If using images, then
data.iframe
is undefined. Thereforelightbox.image.isIframe = ( data.iframe && !data.image );
is also undefined, so toggleClass switch doesn't work https://github.com/aino/galleria/blob/master/src/galleria.js#L2387using
!!data.iframe
instead ofdata.iframe
could fix it.lightbox.image.isIframe = ( !!data.iframe && !data.image );
https://github.com/aino/galleria/blob/master/src/galleria.js#L2385
The text was updated successfully, but these errors were encountered: