| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.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 : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/uxhactp/www/wp-content/plugins/imagify/assets/js/ |
Upload File : |
// Admin bar =======================================================================================
(function($, d, w, undefined) { // eslint-disable-line no-unused-vars, no-shadow, no-shadow-restricted-names
var busy = false;
$( d ).on( 'mouseenter', '#wp-admin-bar-imagify', function() {
var $adminBarProfile, url;
if ( true === busy ) {
return;
}
busy = true;
$adminBarProfile = $( '#wp-admin-bar-imagify-profile-content' );
if ( ! $adminBarProfile.is( ':empty' ) ) {
return;
}
if ( w.ajaxurl ) {
url = w.ajaxurl;
} else {
url = w.imagifyAdminBar.ajaxurl;
}
url += url.indexOf( '?' ) > 0 ? '&' : '?';
$.get( url + 'action=imagify_get_admin_bar_profile&imagifygetadminbarprofilenonce=' + $( '#imagifygetadminbarprofilenonce' ).val() )
.done( function( response ) {
$adminBarProfile.html( response.data );
$( '#wp-admin-bar-imagify-profile-loading' ).remove();
busy = false;
} );
} );
} )(jQuery, document, window);