-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add support for IE11 fullscreen API #673
Comments
of course they had to add this prefixed... |
😞 |
Following code in player.js should work
|
Nice. Want to make a pull request for that? |
No, thanks. I'm too lazy to fork, download, build and run tests:) |
This would be nice for when a video is embedded in an iframe, since in IE11 currently the fullscreen button makes it just grow to the size of the iframe. (For me, the iframe happens to be the same size as the video, so the button is a no-op.) I will submit a pull request if I can ever get all these npm modules to install. :) |
OK, I've made the change and Firefox will go fullscreen with either the minified or the dev version, so I don't think it's the minifier. |
@jewel Are you planning on making a pull request in the near future? I also have the issue with iframes and fullscreen in IE11. If you aren't planning on it, I would be happy to. I am surprised this issue isn't getting more attention. |
@m0v0nage I wasn't able to figure out the issue with the minified version, so I just shipped the development version to my users. If you can figure that out (or it's not happening to you) then by all means, submit a pull request. |
After prettifying the minified js file and debugging in IE11, it would seem that the problem comes from the minifier changing |
…it to github user @jewel for the code changes. I just rearranged to fix minified generation, though this is another issue to look into.
Submitted pull request after testing in numerous browsers. |
@m0v0nage oh, interesting. I wonder if this minifcation issue you've seen is related to some of the fs issues we've seen creep up sometimes. |
@gkatsev That probably would have been a simpler fix. I don't believe that there is any reason that webkit needed to be the default, so it should be harmless. I would be very curious to see what is wrong with the minification program. |
It's because GCC (google closure compiler) is being run in "advanced" mode which is very vigilant about minifying and mangling all the things. So, unfortunately, to be able to use that mode, you kind of have to change your coding style slightly to compensate for it. |
Mentioned in #621
The docs are now available.
http://msdn.microsoft.com/en-us/library/ie/dn265028(v=vs.85).aspx
The text was updated successfully, but these errors were encountered: