mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-22 11:15:29 +01:00
18 lines
397 B
JavaScript
Executable File
18 lines
397 B
JavaScript
Executable File
(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); |