File "maps_points.js"
Full Path: /home/flipjqml/onlinebetsolution.com/wp-content/plugins/devvn-image-hotspot/frontend/js/maps_points.js
File size: 996 bytes
MIME-type: text/plain
Charset: utf-8
(function($){
function ihotspotInit(){
$('.ihotspot_hastooltop').each(function(){
$(this).data('powertip', function() {
var htmlThis = $(this).parents('.ihotspot_tooltop_html').attr('data-html');
return htmlThis;
});
var thisPlace = $(this).parents('.ihotspot_tooltop_html').data('placement');
$(this).powerTip({
placement: thisPlace,
smartPlacement: true,
mouseOnToPopup: true,
}).on({
powerTipClose: function() {
$('#powerTip').html('');
}
});
});
}
$('body').on('click','.close_ihp',function () {
$.powerTip.hide();
});
$(document).ready(function(){
ihotspotInit();
});
let firstLoad = true;
function scroll_element(){
let $top = $(window).scrollTop();
if( $top >= 100 && firstLoad){
ihotspotInit();
firstLoad = false;
}
}
$(window).scroll(function(){
scroll_element();
});
$(window).bind('touchmove', function(e) {
scroll_element();
});
})(jQuery);