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
{{ message }}
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
nice Plugin!
We are using it and had an issue with an FlashPlayer in a Slide (Livestrem, HLS, JWPlayer) not getting any Events passed trough.
The start Function checks for touch devices and if not it prevents the Default.
Chrome and IE 11 (lower no testet) will also prevent passing the Event to the SWF Object (Firefox does)
so we added a check if the event target is a flash object and if so, dont prevent default.
~ Line 429
if (!has.touch && !("application/x-shockwave-flash" === e.target.type)) {
e.preventDefault();
}
Works like a charm.
Best Regards,
Simon
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
nice Plugin!
We are using it and had an issue with an FlashPlayer in a Slide (Livestrem, HLS, JWPlayer) not getting any Events passed trough.
The start Function checks for touch devices and if not it prevents the Default.
Chrome and IE 11 (lower no testet) will also prevent passing the Event to the SWF Object (Firefox does)
so we added a check if the event target is a flash object and if so, dont prevent default.
~ Line 429
if (!has.touch && !("application/x-shockwave-flash" === e.target.type)) {
e.preventDefault();
}
Works like a charm.
Best Regards,
Simon
The text was updated successfully, but these errors were encountered: