Skip to content

Instantly share code, notes, and snippets.

@t9toqwerty
Created July 27, 2017 09:33
Show Gist options
  • Save t9toqwerty/5289ab5b105115d47d6eabe88222d03b to your computer and use it in GitHub Desktop.
Save t9toqwerty/5289ab5b105115d47d6eabe88222d03b to your computer and use it in GitHub Desktop.
$('.magnific-init').on('click', function (e) {
e.preventDefault();
try {
var images = e.target.dataset.images.split(",");
} catch (e) {
var images = [e.target.dataset.images];
}
var imageList = [];
for (var i = 0; i < images.length; i++) {
imageList.push({src: images[i]});
}
$.magnificPopup.open({
items: imageList,
gallery: {
enabled: true
},
type: 'image',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment