1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-02 06:32:07 +02:00

Fixed an issue where ie8 was borking on a bad image attribute.

This commit is contained in:
Steve Heffernan 2012-01-12 17:39:25 -08:00
parent c6153f7556
commit c345889535
2 changed files with 2 additions and 3 deletions

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,