1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-25 11:13:52 +02:00

Updated changelog with FF9 fullscreen fix.

This commit is contained in:
Steve Heffernan 2012-01-30 12:57:17 -08:00
parent 2ecee69838
commit e9e1eeae63
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,4 @@
* Added CSS fix for Firefox 9 fullscreen (in the rare case that it's enabled)
* Replaced swfobject with custom embed to save file size.
* Added flash iframe-mode, an experimental method for getting around flash reloading issues.
* Fixed issue with volume knob position. Improved controls fading.

View File

@ -26,8 +26,10 @@ REQUIRED STYLES (be careful overriding)
/* Playback technology elements expand to the width/height of the containing div. <video> or <object> */
.video-js .vjs-tech { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
/*fix for firefox9 fullscreen (only if it is enabled)*/
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when checking fullScreenEnabled. */
.video-js:-moz-full-screen { position: absolute; }
/* Fullscreen Styles */
body.vjs-full-window {
padding: 0; margin: 0;