GenderDysphoria.fyi/js/_lightbox.js
2020-03-02 20:27:34 -08:00

20 lines
383 B
JavaScript

$(function () {
$('.lightbox, .gutter, .tweet-entities').each(function () {
$(this).magnificPopup({
delegate: 'a.lb',
type: 'image',
closeOnContentClick: false,
closeBtnInside: false,
mainClass: 'mfp-with-zoom mfp-img-mobile',
image: {
verticalFit: true,
},
gallery: {
enabled: true,
},
});
});
});