From fa33f3158e4bed47624bf1d8a83eaca6aa860a0c Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Sat, 31 Oct 2015 18:15:58 -0600 Subject: [PATCH] Don't kill lastActives on chart hover exit --- src/core/core.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/core.controller.js b/src/core/core.controller.js index c65f7a12b..df0ca25ac 100644 --- a/src/core/core.controller.js +++ b/src/core/core.controller.js @@ -375,8 +375,8 @@ // Find Active Elements for hover and tooltips if (e.type == 'mouseout') { - this.active = this.lastActive = []; - this.tooltipActive = this.lastTooltipActive = []; + this.active = []; + this.tooltipActive = []; } else { this.active = function() { switch (this.options.hover.mode) {