Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

html5 video controls don't work in Chrome on Android 4 #18

Open
krzysu opened this issue Jul 1, 2013 · 2 comments
Open

html5 video controls don't work in Chrome on Android 4 #18

krzysu opened this issue Jul 1, 2013 · 2 comments

Comments

@krzysu
Copy link

krzysu commented Jul 1, 2013

Hi,
I've just tested video element in many mobile android browsers and I cannot click/touch any video control only in Chrome mobile browser (v. 27.0.1453.90).
But video works fine for Firefox, Dolphin, Opera and default Android browser (all on Galaxy Nexus, Android 4.2.2).

@krzysu
Copy link
Author

krzysu commented Jul 1, 2013

the quick fix I found is to disable energize fo video elements:

touchend = function(e) {
  (..)
  if(e.target.nodeName == 'VIDEO') {
    return;
  }
  (..)
}

@teusink
Copy link

teusink commented Aug 7, 2013

Make it to this when you want to exclude audio controls also (same "bug").

if(e.target.nodeName == 'VIDEO' || e.target.nodeName == 'AUDIO') { return; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants