GenderDysphoria.fyi/js/_lightbox.js

20 lines
383 B
JavaScript
Raw Permalink Normal View History

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