Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tooltipster_settings.js 854B

123456789101112131415161718192021222324252627282930313233343536
  1. var tooltip_delay = 500;
  2. $(function() {
  3. if (!$.fn.tooltipster) {
  4. $('.tooltip_interactive, .tooltip_image, .tooltip, .tooltip_left').each(function() {
  5. if ($(this).data('title-plain')) {
  6. $(this).attr('title', $(this).data('title-plain')).removeData('title-plain');
  7. }
  8. });
  9. return;
  10. }
  11. $('.tooltip_interactive').tooltipster({
  12. interactive: true,
  13. interactiveTolerance: 500,
  14. delay: tooltip_delay,
  15. updateAnimation: false,
  16. maxWidth: 400
  17. });
  18. $('.tooltip').tooltipster({
  19. delay: tooltip_delay,
  20. updateAnimation: false,
  21. maxWidth: 400
  22. });
  23. $('.tooltip_left').tooltipster({
  24. delay: tooltip_delay,
  25. position: 'left',
  26. updateAnimation: false,
  27. maxWidth: 400
  28. });
  29. $('.tooltip_image').tooltipster({
  30. delay: tooltip_delay,
  31. updateAnimation: false,
  32. fixedWidth: 252
  33. });
  34. });