ashleydw / lightbox

A lightbox gallery plugin for Bootstrap
http://ashleydw.github.io/lightbox
MIT License
1.85k stars 1.3k forks source link

call another inside the one #264

Open lsjack93 opened 7 years ago

lsjack93 commented 7 years ago

Hi, i try to do this, works, but the scrollbar always bugs! Create a little space, between the page and the scrollbar, i don't know why!

$(document).ready(function() {
    $(document).on('click', '[data-toggle="lightbox"]', function(event) {
        event.preventDefault();

        var $lightboxphoto = $('.ekko-lightbox');
        if ($lightboxphoto !== undefined){
            $lightboxphoto.modal('hide');
        }

        return $(this).ekkoLightbox();
    });
});