From: Evert Timberg Date: Sat, 11 Apr 2015 23:42:54 +0000 (-0400) Subject: Fix a typo X-Git-Tag: v2.0-alpha~37^2~6^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a13dd78fc6a37e5239fabd428973bdfd5a8f8a0;p=thirdparty%2FChart.js.git Fix a typo --- diff --git a/src/Chart.Core.js b/src/Chart.Core.js index 2a7908c6b..85100573b 100755 --- a/src/Chart.Core.js +++ b/src/Chart.Core.js @@ -2093,7 +2093,7 @@ }); // If there are no animations queued, manually kickstart a digest, for lack of a better word - if(!this.animations.length){ + if (this.animations.length) { helpers.requestAnimFrame(this.startDigest); } },