Comparar commits
12 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| c4fb8b6fb4 | |||
| e967754c27 | |||
| 2b59be792d | |||
| c0c6db7071 | |||
| 3708b1b6a5 | |||
| 386161c5b9 | |||
| aa72d9b050 | |||
| c345889535 | |||
| c6153f7556 | |||
| 11a75fe74f | |||
| 8a5f667159 | |||
| a2651b9ab5 |
@@ -13,3 +13,12 @@ CHANGELOG
|
||||
|
||||
---- 3.0.5 / 2012-01-12 / event-layer-x-deprecation-fix ------------------------
|
||||
* Removed deprecated event.layerX and layerY
|
||||
|
||||
---- 3.0.6 / 2012-01-12 / docs-url-fix -----------------------------------------
|
||||
* Fixed wrong URL for CDN in docs
|
||||
|
||||
---- 3.0.7 / 2012-01-12 / fixing-ie8-poster-bug --------------------------------
|
||||
* Fixed an ie8 breaking bug with the poster
|
||||
|
||||
---- 3.0.8 / 2012-01-23 / fix-ie-controls-hiding -------------------------------
|
||||
* CFixed issue with controls not hiding in IE due to no opacity support
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
---
|
||||
major: 3
|
||||
patch: 5
|
||||
patch: 8
|
||||
minor: 0
|
||||
|
||||
+2
-2
@@ -17,8 +17,8 @@ You can download the Video.js source and host it on your own servers, or use the
|
||||
|
||||
{% highlight html %}
|
||||
|
||||
<script src="http://vjs.zencdn.com/c/video.js"></script>
|
||||
<link href="http://vjs.zencdn.com/c/video-js.css" rel="stylesheet">
|
||||
<script src="http://vjs.zencdn.net/c/video.js"></script>
|
||||
<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet">
|
||||
|
||||
{% endhighlight %}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
/*!
|
||||
Video.js - HTML5 Video Player
|
||||
Version 3.0r2
|
||||
Version 3.0
|
||||
|
||||
LGPL v3 LICENSE INFO
|
||||
This file is part of Video.js. Copyright 2011 Zencoder, Inc.
|
||||
|
||||
externo
+9
-2
@@ -236,10 +236,18 @@ _V_.ControlBar = _V_.Component.extend({
|
||||
// Used for transitions (fading out)
|
||||
reveal: function(){
|
||||
this.el.style.opacity = 1;
|
||||
|
||||
// IE doesn't support opacity, so use display instead
|
||||
if ( !('opacity' in document.body.style) ) {
|
||||
this.show();
|
||||
}
|
||||
},
|
||||
|
||||
conceal: function(){
|
||||
this.el.style.opacity = 0;
|
||||
if ( !('opacity' in document.body.style) ) {
|
||||
this.hide();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@@ -726,8 +734,7 @@ _V_.Poster = _V_.Button.extend({
|
||||
},
|
||||
|
||||
createElement: function(){
|
||||
_V_.log(this.player.options.poster)
|
||||
return this._super("img", {
|
||||
return _V_.createElement("img", {
|
||||
className: "vjs-poster",
|
||||
src: this.player.options.poster,
|
||||
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário