From 154ce016cca9d9955192b692f057766b63a2ee24 Mon Sep 17 00:00:00 2001 From: Nick Downie Date: Mon, 9 Mar 2015 17:05:20 +0000 Subject: [PATCH] Ensure cancelAnimFrame has no function context --- src/Chart.Core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chart.Core.js b/src/Chart.Core.js index f5af352d4..efe9f78a8 100755 --- a/src/Chart.Core.js +++ b/src/Chart.Core.js @@ -825,7 +825,7 @@ }, stop : function(){ // Stops any current animation loop occuring - helpers.cancelAnimFrame(this.animationFrame); + cancelAnimFrame(this.animationFrame); return this; }, resize : function(callback){ -- 2.47.2