From b6c89c9575415fc83486706226f097c3a80ebab5 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Thu, 5 Mar 2015 18:56:23 +0000 Subject: [PATCH] tooltip tweaks - slightly cleaner this way, i think --- code/boot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/boot.js b/code/boot.js index 172243fb..ace7f1db 100644 --- a/code/boot.js +++ b/code/boot.js @@ -461,11 +461,11 @@ window.setupTooltips = function(element) { element = element || $(document); element.tooltip({ // disable show/hide animation - show: { effect: "hide", duration: 0 } , + show: { effect: 'none', duration: 0, delay: 350 }, hide: false, open: function(event, ui) { + // ensure all other tooltips are closed $(".ui-tooltip").not(ui.tooltip).remove(); - ui.tooltip.delay(300).fadeIn(0); }, content: function() { var title = $(this).attr('title');