1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-02 09:11:54 +02:00

Changed 'createElement' method to 'createEl'

This commit is contained in:
Aleksandr Sandrovskiy 2013-02-08 00:44:03 +03:00
parent 3e555d77ea
commit 4b960849c7

View File

@ -67,7 +67,7 @@ vjs.Html5.prototype.createEl = function(){
player.el().removeChild(el);
el = el.cloneNode(false);
} else {
el = vjs.createElement('video', {
el = vjs.createEl('video', {
id:player.id() + '_html5_api',
className:'vjs-tech'
});