| Server IP : 170.10.162.208 / Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux altar19.supremepanel19.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64 User : deltahospital ( 1806) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home1/deltahospital/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);