diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index f19e75360..1fe452450 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -81,6 +81,7 @@ $.widget("ui.tooltip", { this.current = target; this.currentTitle = target.attr("title"); var content = this.options.content.call(target[0], function(response) { + // ignore async responses that come in after the tooltip is already hidden if (self.current == target) self.open(target, response); }); |