]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
typo 1612/head
authorJáchym Toušek <enumag@gmail.com>
Tue, 3 Nov 2015 12:49:34 +0000 (13:49 +0100)
committerJáchym Toušek <enumag@gmail.com>
Tue, 3 Nov 2015 12:49:34 +0000 (13:49 +0100)
docs/00-Getting-Started.md

index 0b32323e9fbcbbaefbd5e147bec335656c67838a..4ccf20de78b7806800c56371afd8f12a005e51b2 100644 (file)
@@ -48,7 +48,7 @@ To create a chart, we need to instantiate the `Chart` class. To do this, we need
 // Any of the following formats may be used
 var ctx = document.getElementById("myChart");
 var ctx = document.getElementById("myChart").getContext("2d");
-var ctx = $("myChart");
+var ctx = $("#myChart");
 ```
 
 Once you have the element or context, you're ready to instantiate a pre-defined chart-type or create your own!