18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
|
(function($) {
|
||
|
'use strict';
|
||
|
if ($("#lightgallery").length) {
|
||
|
$("#lightgallery").lightGallery();
|
||
|
}
|
||
|
|
||
|
if ($("#lightgallery-without-thumb").length) {
|
||
|
$("#lightgallery-without-thumb").lightGallery({
|
||
|
thumbnail: true,
|
||
|
animateThumb: false,
|
||
|
showThumbByDefault: false
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if ($("#video-gallery").length) {
|
||
|
$("#video-gallery").lightGallery();
|
||
|
}
|
||
|
})(jQuery);
|