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

Maded some revisions to videojs/video.js#1369

closes #1369
This commit is contained in:
Steve Heffernan
2014-08-04 15:04:39 -07:00
parent b3bbb17dd4
commit 527a33a252
6 changed files with 53 additions and 72 deletions

View File

@ -81,9 +81,9 @@ vjs.Html5.prototype.createEl = function(){
el = clone;
player.tag = null;
} else {
el = vjs.createEl('video', {});
el = vjs.createEl('video');
vjs.setElementAttributes(el,
vjs.obj.merge(player.tagAttributes||{}, {
vjs.obj.merge(player.tagAttributes || {}, {
id:player.id() + '_html5_api',
'class':'vjs-tech'
})