| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/public_html/wp-content/themes/woodmart/inc/admin/assets/js/ |
Upload File : |
(function($) {
'use strict';
$(document).on('mouseenter', '.xts-popup .xts-hint', function () {
var $wrapper = $(this);
var offset = $wrapper.offset();
var top = offset.top - $(window).scrollTop();
var content = '';
if ( ! $wrapper.hasClass( 'xts-loaded' ) ) {
var $attachment = $wrapper.find('img');
if ( ! $attachment.length ) {
$attachment = $wrapper.find('video');
}
if ( ! $attachment.length || $wrapper.hasClass('xts-loaded')) {
return;
}
$wrapper.addClass('xts-loaded xts-loading');
$attachment.each( function () {
var $this = $(this);
if ( $this.attr('src') ) {
return;
}
$this.attr('src', $this.data('src') );
});
$attachment.on('load play', function () {
$wrapper.removeClass('xts-loading');
});
}
if ( 350 >= top ) {
$wrapper.find('.xts-tooltip').removeClass('xts-top').addClass('xts-bottom')
content = $wrapper.html();
$wrapper.find('.xts-tooltip').removeClass('xts-bottom').addClass('xts-top')
} else {
content = $wrapper.html();
}
$wrapper.find('.xts-tooltip').addClass('xts-hidden');
setTimeout( function () {
$('body').append(`
<div class="xts-hint-wrapper" style="top: ${top}px; left: ${offset.left}px">
${content}
</div>
`);
}, 100);
});
$(document).on('mouseleave', '.xts-hint', function () {
$('.xts-hint-wrapper').remove();
$(this).find('.xts-tooltip').removeClass('xts-hidden');
});
})(jQuery);