mirror of
https://github.com/videojs/video.js.git
synced 2025-01-02 06:32:07 +02:00
Merge branch 'hotfix/fixing-ie8-poster-bug'
This commit is contained in:
commit
0deba6e673
@ -16,3 +16,6 @@ CHANGELOG
|
||||
|
||||
---- 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
|
||||
|
@ -1,4 +1,4 @@
|
||||
---
|
||||
major: 3
|
||||
patch: 6
|
||||
patch: 7
|
||||
minor: 0
|
||||
|
@ -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.
|
||||
|
3
src/controls.js
vendored
3
src/controls.js
vendored
@ -726,8 +726,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,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user