Skip to content

Instantly share code, notes, and snippets.

@davidortinau
Created November 8, 2012 15:11
Show Gist options
  • Save davidortinau/4039375 to your computer and use it in GitHub Desktop.
Save davidortinau/4039375 to your computer and use it in GitHub Desktop.
isPepperFlashPlayer
isPepperFlashPlayer: ->
plugin = navigator.plugins['Shockwave Flash']
if plugin is undefined #IE
false
else
plugin.filename.toLowerCase().indexOf('pep') > -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment