From: Tanner Linsley Date: Sun, 1 Nov 2015 00:15:58 +0000 (-0600) Subject: Don't kill lastActives on chart hover exit X-Git-Tag: 2.0.0-beta1~39^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fa33f3158e4bed47624bf1d8a83eaca6aa860a0c;p=thirdparty%2FChart.js.git Don't kill lastActives on chart hover exit --- 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) {