From ac78c0c9c4a13e89a963cbb92899ae71eb89c5f1 Mon Sep 17 00:00:00 2001 From: SirStendec Date: Sun, 8 Apr 2018 15:19:34 -0400 Subject: [PATCH] Fix disappearing tooltips. (Closes #408) --- src/utilities/tooltip.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utilities/tooltip.js b/src/utilities/tooltip.js index 48efd9b1..6fef1d3a 100644 --- a/src/utilities/tooltip.js +++ b/src/utilities/tooltip.js @@ -327,7 +327,8 @@ export class Tooltip { tip.outer = el._ffz_out_handler = el._ffz_over_handler = null; } - this.elements.delete(tip.target); + if ( this.live ) + this.elements.delete(tip.target); tip._update = tip.rerender = tip.update = noop; tip.element = null;