You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, i've had a problem detecting flash under IE9 under Win7.
Even adobe flash was installed Modernizr.flash was false.
I've solved with this little snippet I found on stackoverflow (http://stackoverflow.com/a/3336320/2367784): try { Modernizr.flash = Boolean(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')); } catch (exception) { Modernizr.flash = ('undefined' != typeof navigator.mimeTypes['application/x-shockwave-flash']); }
The only difference should be that Detectizr test ShockwaveFlash.ShockwaveFlash.1 instead of ShockwaveFlash.ShockwaveFlash, what this .1 is? It is a bug?
The text was updated successfully, but these errors were encountered:
Hey, i've had a problem detecting flash under IE9 under Win7.
Even adobe flash was installed
Modernizr.flash
wasfalse
.I've solved with this little snippet I found on stackoverflow (http://stackoverflow.com/a/3336320/2367784):
try { Modernizr.flash = Boolean(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')); } catch (exception) { Modernizr.flash = ('undefined' != typeof navigator.mimeTypes['application/x-shockwave-flash']); }
The only difference should be that Detectizr test
ShockwaveFlash.ShockwaveFlash.1
instead ofShockwaveFlash.ShockwaveFlash
, what this .1 is? It is a bug?The text was updated successfully, but these errors were encountered: