]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
fix getting started global chart config typo 1606/head
authorLevi Thomason <me@levithomason.com>
Mon, 2 Nov 2015 07:03:14 +0000 (23:03 -0800)
committerLevi Thomason <me@levithomason.com>
Mon, 2 Nov 2015 07:03:14 +0000 (23:03 -0800)
docs/00-Getting-Started.md

index 39db54b3792fbbbe32169abd3055d271e2533bf1..0b32323e9fbcbbaefbd5e147bec335656c67838a 100644 (file)
@@ -103,7 +103,7 @@ Chart.defaults.global = {
 
     // Legend callback function. 
     // @param {Chart} chart : the chart object to generate a legend for
-    legendCallback: legendCallback: function(chart) {
+    legendCallback: function(chart) {
         var text = [];
         text.push('<ul class="' + chart.id + '-legend">');
         for (var i = 0; i < chart.data.datasets.length; i++) {
@@ -116,7 +116,7 @@ Chart.defaults.global = {
         text.push('</ul>');
 
         return text.join("");
-    }
+    },
 
     animation: {
         duration: 1000,
@@ -222,4 +222,4 @@ If for example, you wanted all charts created to be responsive, and resize when
 Chart.defaults.global.responsive = true;
 ```
 
-Now, every time we create a chart, `options.responsive` will be `true`.
\ No newline at end of file
+Now, every time we create a chart, `options.responsive` will be `true`.