Merge pull request #1559 from posgarou/bugfix/chart_undefined_in_core_helper

Fix mistaken variable assignment in core files
This commit is contained in:
Tanner Linsley
2015-10-22 12:04:16 -06:00
3 changed files with 3 additions and 3 deletions

View 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,
helpers = Chart.helpers;

View 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,
helpers = Chart.helpers;
Chart.elements = {};

View 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 = {};