Skip to content

Demo_changes1 #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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