Skip to content

Instantly share code, notes, and snippets.

@LiamChapman
Created June 11, 2014 13:34
Show Gist options
  • Select an option

  • Save LiamChapman/8a123adc4e83d0a7d4d2 to your computer and use it in GitHub Desktop.

Select an option

Save LiamChapman/8a123adc4e83d0a7d4d2 to your computer and use it in GitHub Desktop.
canvas support
function isCanvasSupported (){
var elem = document.createElement('canvas');
return !!(elem.getContext && elem.getContext('2d'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment