| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/ewww-image-optimizer/includes/ |
Upload File : |
(function(window, factory) {
var globalInstall = function(){
factory(window.lazySizes);
window.removeEventListener('lazyunveilread', globalInstall, true);
};
factory = factory.bind(null, window, window.document);
if(typeof module == 'object' && module.exports){
factory(require('lazysizes'));
} else if(window.lazySizes) {
globalInstall();
} else {
window.addEventListener('lazyunveilread', globalInstall, true);
}
}(window, function(window, document, lazySizes) {
/*jshint eqnull:true */
'use strict';
var bgLoad, regBgUrlEscape;
var uniqueUrls = {};
if(document.addEventListener){
regBgUrlEscape = /\(|\)|\s|'/;
addEventListener('lazybeforeunveil', function(e){
if(e.detail.instance != lazySizes){return;}
var load, bg, bgWebP, poster;
if(!e.defaultPrevented) {
if(e.target.preload == 'none'){
e.target.preload = 'auto';
}
// handle data-bg
bg = e.target.getAttribute('data-bg');
if (bg) {
if(ewww_webp_supported) {
console.log('checking for data-bg-webp');
bgWebP = e.target.getAttribute('data-bg-webp');
if (bgWebP) {
console.log('replacing data-bg with data-bg-webp');
bg = bgWebP;
}
}
var dPR = (window.devicePixelRatio || 1);
var targetWidth = Math.round(e.target.offsetWidth * dPR);
var targetHeight = Math.round(e.target.offsetHeight * dPR);
if (!shouldAutoScale(e.target)||!shouldAutoScale(e.target.parentNode)){
} else if (window.lazySizes.hC(e.target,'wp-block-cover')) {
console.log('found wp-block-cover with data-bg');
if (window.lazySizes.hC(e.target,'has-parallax')) {
console.log('also has-parallax with data-bg');
targetWidth = Math.round(window.screen.width * dPR);
targetHeight = Math.round(window.screen.height * dPR);
} else if (targetHeight<300) {
targetHeight = 430;
}
bg = constrainSrc(bg,targetWidth,targetHeight,'bg-cover');
} else if (window.lazySizes.hC(e.target,'elementor-bg')){
console.log('found elementor-bg with data-bg');
bg = constrainSrc(bg,targetWidth,targetHeight,'bg-cover');
} else if (window.lazySizes.hC(e.target,'et_parallax_bg')){
console.log('found et_parallax_bg with data-bg');
bg = constrainSrc(bg,targetWidth,targetHeight,'bg-cover');
} else if (window.lazySizes.hC(e.target,'bg-image-crop')){
console.log('found bg-image-crop with data-bg');
bg = constrainSrc(bg,targetWidth,targetHeight,'bg-cover');
} else {
console.log('found other data-bg');
bg = constrainSrc(bg,targetWidth,targetHeight,'bg');
}
console.log('setting .backgroundImage: ' + 'url(' + (regBgUrlEscape.test(bg) ? JSON.stringify(bg) : bg ) + ')');
e.target.style.backgroundImage = 'url(' + (regBgUrlEscape.test(bg) ? JSON.stringify(bg) : bg ) + ')';
}
}
}, false);
}
}));