mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-30 23:06:18 +00:00
20 lines
383 B
JavaScript
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,
|
|
},
|
|
});
|
|
});
|
|
|
|
});
|