9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
|
$(document).ready(function() {
|
||
|
// Using http://dimsemenov.com/plugins/magnific-popup/documentation.html
|
||
|
$('.post-image').magnificPopup({
|
||
|
type:'image',
|
||
|
gallery: {
|
||
|
enabled: true,
|
||
|
}
|
||
|
});
|
||
|
});
|