D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vblioqus
/
llyygame.pureapks.org
/
wp-content
/
themes
/
kadence
/
assets
/
js
/
src
/
Filename :
lightbox-init.js
back
Copy
/* global SimpleLightbox */ /** * File lightbox-init.js. * Gets Lightbox working for Kadence Theme. */ (function () { "use strict"; var kadenceThemeLightbox = { checkImage: function (element) { return /(png|jpg|jpeg|gif|tiff|bmp|webp|avif)$/.test( element .getAttribute("href") .toLowerCase() .split("?")[0] .split("#")[0] ); }, findImages: function () { var foundLinks = document.querySelectorAll( "a[href]:not(.kt-no-lightbox):not(.custom-link):not(.kb-gallery-item-link):not(.kt-core-gallery-lightbox)" ); if (!foundLinks.length) { return; } if (foundLinks) { for (let i = 0; i < foundLinks.length; i++) { if ( kadenceThemeLightbox.checkImage(foundLinks[i]) && !foundLinks[i].classList.contains("kt-lightbox") ) { foundLinks[i].classList.add("kt-lightbox"); new SimpleLightbox({ elements: [foundLinks[i]], }); } } } }, findGalleries: function () { var foundGalleries = document.querySelectorAll(".wp-block-gallery"); if (!foundGalleries.length) { return; } if (foundGalleries) { for (let i = 0; i < foundGalleries.length; i++) { var foundLinks = foundGalleries[i].querySelectorAll( ".blocks-gallery-item a" ); if (!foundLinks.length) { return; } if (foundLinks) { for (let i = 0; i < foundLinks.length; i++) { if ( kadenceThemeLightbox.checkImage(foundLinks[i]) ) { foundLinks[i].classList.add( "kt-core-gallery-lightbox" ); } } } if (foundGalleries[i]) { new SimpleLightbox({ elements: foundGalleries[i].querySelectorAll( ".blocks-gallery-item a" ), }); } } } }, /** * Initiate the script to process all */ initAll: function () { kadenceThemeLightbox.findGalleries(); kadenceThemeLightbox.findImages(); }, // Initiate the menus when the DOM loads. init: function () { if (typeof SimpleLightbox == "function") { kadenceThemeLightbox.initAll(); } else { var initLoadDelay = setInterval(function () { if (typeof SimpleLightbox == "function") { kadenceThemeLightbox.initAll(); clearInterval(initLoadDelay); } }, 200); } }, }; if ("loading" === document.readyState) { // The DOM has not yet been loaded. document.addEventListener( "DOMContentLoaded", kadenceThemeLightbox.init ); } else { // The DOM has already been loaded. kadenceThemeLightbox.init(); } document.addEventListener("kb-query-loaded", kadenceThemeLightbox.init); document.addEventListener("kadenceJSInitReload", kadenceThemeLightbox.init); })();