From: Ryan Mitchell Date: Thu, 22 Oct 2015 16:41:03 +0000 (-0400) Subject: Fix typo in core.helpers.js X-Git-Tag: 2.0.0-beta~5^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef1c4fb0cbd7c35f0affaa27bf589b6f3302fd8c;p=thirdparty%2FChart.js.git Fix typo in core.helpers.js --- diff --git a/src/core/core.helpers.js b/src/core/core.helpers.js index ca27c7c3c..9b308152d 100644 --- a/src/core/core.helpers.js +++ b/src/core/core.helpers.js @@ -4,7 +4,7 @@ //Declare root variable - window in the browser, global on the server var root = this, - previous = root.Chart; + Chart = root.Chart; //Global Chart helpers object for utility methods and classes var helpers = Chart.helpers = {};