Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions html5-canvas-drawing-app.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Create HTML5 Canvas JavaScript Drawing App Example</title>
<title>Create HTML5 Canvas JavaScript Drawing App </title>
</head>
<body>
<div id="canvasDiv"></div>
<div id="canvasDIVISION"></div>
<!--[if IE]><script type="text/javascript" src="excanvas.js"></script><![endif]-->
<script type="text/javascript" src="html5-canvas-drawing-app.js"></script>
<script type="text/javascript">
Expand Down
4 changes: 2 additions & 2 deletions html5-canvas-drawing-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var drawingApp = (function () {

var canvas,
context,
canvasWidth = 490,
canvasHeight = 220,
canvasWidth = 500,
canvasHeight = 250,
colorPurple = "#cb3594",
colorGreen = "#659b41",
colorYellow = "#ffcf33",
Expand Down