| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/so-widgets-bundle/widgets/google-map/js/ |
Upload File : |
/* globals jQuery, sowb */
var sowb = window.sowb || {};
jQuery( function ( $ ) {
var setupStaticMapErrorHandler = function () {
$( '.sowb-google-map-static' ).each( function () {
var $this = $( this );
var showFallbackImage = function () {
if ( $this.data( 'fallbackImage' ) ) {
var imgData = $this.data( 'fallbackImage' );
if ( imgData.hasOwnProperty( 'img' ) && imgData.img.length > 0 ) {
$this.parent().append( imgData.img );
$this.remove();
}
}
};
if ( this.sowbLoadError ) {
showFallbackImage();
} else if ( !this.complete ) {
$this.error( showFallbackImage );
}
} );
};
setupStaticMapErrorHandler();
$( window ).on('load resize setup_widgets', function() {
$( '.sowb-google-map-static' ).each( function () {
var $this = $( this );
var src = $this.prop( 'src' );
var breakpointCheck = window.matchMedia( '(max-width: ' + $this.data( 'breakpoint' ) + 'px)' )
// Check if the user is viewing the map on mobile
if ( breakpointCheck.matches ) {
// Scale the map for mobile
$this.attr( 'src', src + '&scale=2' );
} else {
// Check if the static map enabled for mobile and if it is, restore it back to normal
if ( src.indexOf( '&scale=2' ) >= 0 ) {
$this.attr( 'src', src.split('&scale=2')[0] );
}
}
} );
} );
} );
window.sowb = sowb;