Created
August 15, 2015 02:13
-
-
Save salipro4ever/5b695842c62163105deb to your computer and use it in GitHub Desktop.
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
| Detector = { | |
| canvas : !! window.CanvasRenderingContext2D, | |
| webgl : ( function () { try { return !! window.WebGLRenderingContext && !! document.createElement( 'canvas' ).getContext( 'experimental-webgl' ); } catch( e ) { return false; } } )(), | |
| workers : !! window.Worker, | |
| fileapi : window.File && window.FileReader && window.FileList && window.Blob, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment