Don't kill lastActives on chart hover exit

This commit is contained in:
Tanner Linsley 2015-10-31 18:15:58 -06:00
parent 0fa03fad24
commit fa33f3158e

View File

@ -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) {