Skip to content

Commit

Permalink
Merge pull request #1559 from posgarou/bugfix/chart_undefined_in_core…
Browse files Browse the repository at this point in the history
…_helper

Fix mistaken variable assignment in core files
  • Loading branch information
tannerlinsley committed Oct 22, 2015
2 parents 511e82a + 57979a2 commit 7a042bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/core.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;


Expand Down
2 changes: 1 addition & 1 deletion src/core/core.element.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
Expand Down
2 changes: 1 addition & 1 deletion src/core/core.helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {};
Expand Down

0 comments on commit 7a042bc

Please sign in to comment.