From 234efc52672e7582c0bbd0cb3d0985e76708d576 Mon Sep 17 00:00:00 2001 From: Pascoual Date: Tue, 10 Nov 2015 01:00:30 +0100 Subject: [PATCH] Fix: tooltips checks indent --- src/core/core.controller.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/core.controller.js b/src/core/core.controller.js index 1d3e42ccb..47236376b 100644 --- a/src/core/core.controller.js +++ b/src/core/core.controller.js @@ -439,8 +439,8 @@ case 'label': case 'dataset': for (var i = 0; i < this.lastActive.length; i++) { - if (this.lastActive[i]) - this.data.datasets[this.lastActive[i]._datasetIndex].controller.removeHoverStyle(this.lastActive[i], this.lastActive[i]._datasetIndex, this.lastActive[i]._index); + if (this.lastActive[i]) + this.data.datasets[this.lastActive[i]._datasetIndex].controller.removeHoverStyle(this.lastActive[i], this.lastActive[i]._datasetIndex, this.lastActive[i]._index); } break; default: @@ -457,8 +457,8 @@ case 'label': case 'dataset': for (var j = 0; j < this.active.length; j++) { - if (this.active[j]) - this.data.datasets[this.active[j]._datasetIndex].controller.setHoverStyle(this.active[j]); + if (this.active[j]) + this.data.datasets[this.active[j]._datasetIndex].controller.setHoverStyle(this.active[j]); } break; default: -- 2.47.2