first commit

This commit is contained in:
dev-chiefworks
2022-05-31 16:21:53 -04:00
commit f76abffdcd
5978 changed files with 1078901 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
/* ------------------------------------------------------------------------------
*
* # Media gallery
*
* Demo JS code for gallery page kit
*
* ---------------------------------------------------------------------------- */
// Setup module
// ------------------------------
var Gallery = function() {
//
// Setup module components
//
// Lightbox
var _componentFancybox = function() {
if (!$().fancybox) {
console.warn('Warning - fancybox.min.js is not loaded.');
return;
}
// Image lightbox
$('[data-popup="lightbox"]').fancybox({
padding: 3
});
};
//
// Return objects assigned to module
//
return {
init: function() {
_componentFancybox();
}
}
}();
// Initialize module
// ------------------------------
document.addEventListener('DOMContentLoaded', function() {
Gallery.init();
});