]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix typo in core.helpers.js
authorRyan Mitchell <posgarou@gmail.com>
Thu, 22 Oct 2015 16:41:03 +0000 (12:41 -0400)
committerRyan Mitchell <posgarou@gmail.com>
Thu, 22 Oct 2015 16:41:03 +0000 (12:41 -0400)
src/core/core.helpers.js

index ca27c7c3c85862ed9678e477840ef7dce1cf5c3b..9b308152ded642ba8127e77a1b1164ede3a04e9a 100644 (file)
@@ -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 = {};