]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Make javascript JavaScript and Github GitHub 392/head
authorJames Brooks <james@bluebaytravel.co.uk>
Mon, 30 Jun 2014 10:50:35 +0000 (11:50 +0100)
committerJames Brooks <james@bluebaytravel.co.uk>
Mon, 30 Jun 2014 10:50:35 +0000 (11:50 +0100)
docs/00-Getting-Started.md
docs/06-Advanced.md
docs/07-Notes.md

index 414a7d4f4ffce4ef1471b589fb79c25ca90b2309..c64c0c840df33e58c255aae52ef6f01795f4de48 100644 (file)
@@ -11,7 +11,7 @@ First we need to include the Chart.js library on the page. The library occupies
 <script src="Chart.js"></script>
 ```
 
-Alternatively, if you're using an AMD loader for javascript modules, that is also supported in the Chart.js core. Please note: the library will still occupy a global variable of `Chart`, even if it detects `define` and `define.amd`. If this is a problem, you can call `noConflict` to restore the global Chart variable to it's previous owner.
+Alternatively, if you're using an AMD loader for JavaScript modules, that is also supported in the Chart.js core. Please note: the library will still occupy a global variable of `Chart`, even if it detects `define` and `define.amd`. If this is a problem, you can call `noConflict` to restore the global Chart variable to it's previous owner.
 
 ```javascript
 // Using requirejs
index 906efb500c82f65534a4976a12d0e4d593bc504c..f1e0e04740b107b34ffbfd607760b35a99989e8b 100644 (file)
@@ -122,7 +122,7 @@ new Chart(ctx).LineAlt(data);
 
 ### Creating custom builds
 
-Chart.js uses <a href="http://gulpjs.com/" target="_blank">gulp</a> to build the library into a single javascript file. We can use this same build script with custom parameters in order to build a custom version.
+Chart.js uses <a href="http://gulpjs.com/" target="_blank">gulp</a> to build the library into a single JavaScript file. We can use this same build script with custom parameters in order to build a custom version.
 
 Firstly, we need to ensure development dependencies are installed. With node and npm installed, after cloning the Chart.js repo to a local directory, and navigating to that directory in the command line, we can run the following:
 
@@ -131,7 +131,7 @@ npm install
 npm install -g gulp
 ```
 
-This will install the local development dependencies for Chart.js, along with a CLI for the javascript task runner <a href="http://gulpjs.com/" target="_blank">gulp</a>.
+This will install the local development dependencies for Chart.js, along with a CLI for the JavaScript task runner <a href="http://gulpjs.com/" target="_blank">gulp</a>.
 
 Now, we can run the `gulp build` task, and pass in a comma seperated list of types as an argument to build a custom version of Chart.js with only specified chart types.
 
index f4bb5afe2bee4f1f20db1f3ff985ef6301efab06..8ba5a59dd783d0b2add0f6ccb0fe73ea25a96ffa 100644 (file)
@@ -26,7 +26,7 @@ Some important points to note in my experience using ExplorerCanvas as a fallbac
 
 ### Bugs & issues
 
-Please report these on the Github page - at <a href="https://github.com/nnnick/Chart.js" target="_blank">github.com/nnnick/Chart.js</a>. If you could include a link to a simple <a href="http://jsbin.com/" target="_blank">jsbin</a> or similar to demonstrate the issue, that'd be really helpful.
+Please report these on the GitHub page - at <a href="https://github.com/nnnick/Chart.js" target="_blank">github.com/nnnick/Chart.js</a>. If you could include a link to a simple <a href="http://jsbin.com/" target="_blank">jsbin</a> or similar to demonstrate the issue, that'd be really helpful.
 
 
 ### Contributing