See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| <html> | |
| <head> | |
| <script src="pingpoliCandlestickChart.js"></script> | |
| </head> | |
| <body> | |
| <canvas width="1280" height="720" id="testcanvas"></canvas> | |
| <script> | |
| function plot() | |
| { | |
| var xmlhttp = new XMLHttpRequest(); |
| /* | |
| A single-file JavaScript class to draw candlestick charts. | |
| Use at your own risk. | |
| https://twitter.com/pingpoli | |
| https://pingpoli.de | |
| */ | |
| function pingpoliCandlestick( timestamp , open , close , high , low ) | |
| { | |
| this.timestamp = parseInt(timestamp); | |
| this.open = parseFloat(open); |