File "ep-hotspots.js"
Full path: /home/kosmetik/public_html/wp-content/plugins/elements-plus/assets/js/ep-hotspots.js
File
size: 428 B
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
(function($) {
$(window).on('elementor/frontend/init', function () {
elementorFrontend.hooks.addAction('frontend/element_ready/ep-hotspots.default', function($scope) {
$('.ep-map-item').each(function() {
var tooltipActive = $(this).data('show-tooltip');
if ( 'yes' !== tooltipActive ) {
return;
}
$(this).tipso( {
tooltipHover: true,
speed : 200,
});
});
});
});
})( jQuery );