]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Explicit global definition 75/head
authorEsa-Matti Suuronen <esa-matti@suuronen.org>
Sat, 13 Apr 2013 08:55:36 +0000 (11:55 +0300)
committerEsa-Matti Suuronen <esa-matti@suuronen.org>
Sat, 13 Apr 2013 08:55:36 +0000 (11:55 +0300)
Some script bundlers such as Browserify compile a wrapper function over the modules. If var-statement is used to define the global it will be hidden inside it. Use window-global to define Chart global explicitly.

Chart.js

index a2141a056042e6eb120f3dd739ce76594f81535c..ffbe16f3711316a2f43305a7f65c2773ed1e48fb 100755 (executable)
--- a/Chart.js
+++ b/Chart.js
@@ -8,7 +8,7 @@
  */
 
 //Define the global Chart Variable as a class.
-var Chart = function(context){
+window.Chart = function(context){
 
        var chart = this;