File: //home/slfopp7cb1df/www/home/wp-content/plugins/devvn-image-hotspot/frontend/js/maps_points.js
(function($){
$(document).ready(function(){
$('.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();
});
})
})
})(jQuery)