mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
32 lines
688 B
JavaScript
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'
|
||
|
});
|
||
|
});
|