Gazelle/static/functions/tooltipster_settings.js
2013-08-28 23:08:41 +00:00

32 lines
688 B
JavaScript

var tooltip_delay = 500;
$(document).ready(function() {
if (!$.fn.tooltipster) {
$('.tooltip_interactive, .tooltip, .tooltip_gold').each(function() {
if ($(this).data('title-plain')) {
$(this).attr('title', $(this).data('title-plain'));
}
});
return;
}
$('.tooltip_interactive').tooltipster({
interactive: true,
interactiveTolerance: 500,
delay: tooltip_delay,
updateAnimation: false,
maxWidth: 400
});
$('.tooltip').tooltipster({
delay: tooltip_delay,
updateAnimation: false,
maxWidth: 400
});
$('.tooltip_gold').tooltipster({
delay: tooltip_delay,
maxWidth: 400,
updateAnimation: false,
theme: '.tooltipster-default gold_theme'
});
});