Created
December 24, 2012 14:24
-
-
Save rememberlenny/4369421 to your computer and use it in GitHub Desktop.
Check Canvas availability from https://developer.mozilla.org/en-US/docs/HTML/Canvas/Tutorial/Basic_usage?redirectlocale=en-US&redirectslug=Canvas_tutorial%2FBasic_usage
This file contains 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
var canvas = document.getElementById('tutorial'); | |
if (canvas.getContext){ | |
var ctx = canvas.getContext('2d'); | |
// drawing code here | |
} else { | |
// canvas-unsupported code here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment