Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Created May 12, 2014 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukehedger/0fbac154119b5eb9324f to your computer and use it in GitHub Desktop.
Save lukehedger/0fbac154119b5eb9324f to your computer and use it in GitHub Desktop.
Detect Flash support
detectFlash: ->
if navigator.plugins["Shockwave Flash"]
return true
return false
# usage:
# if detectFlash()
# console.log "Flash supported"
# else
# console.log "No Flash"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment