1
0
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:
Steve Heffernan 2012-01-12 17:40:46 -08:00
commit 0deba6e673
4 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
---
major: 3
patch: 6
patch: 7
minor: 0

View File

@ -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
View File

@ -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,