File: /home/clients/94735d3feef25fe7d1511e6bdd8b0ef6/web/wp-content/plugins/pods/ui/js/qtip.js
jQuery( document ).ready( function ( $ ) {
$( '.pods-qtip' ).each( function ( index, element ) {
$( element ).qtip( {
content: {
attr: 'alt'
},
style: {
classes: 'ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded'
},
show: {
effect: function ( offset ) {
$( this ).fadeIn( 'fast' );
}
},
hide: {
fixed: true,
delay: 300
},
position: {
container: $( element ).parent(),
my: 'bottom left',
adjust: {
y: -14
}
}
} );
} );
} );