This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(document).ready(function () { | |
//User Variables | |
var canvasWidth = 400; //canvas width | |
var canvasHeight = 60; //canvas height | |
var canvas = document.getElementById('canvas'); //canvas element | |
var context = canvas.getContext("2d"); //context element | |
var clickX = new Array(); | |
var clickY = new Array(); |