From 2f92bb9839d8d968099047b083e053795635c4c7 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 6 Oct 2014 10:35:11 +0000 Subject: [PATCH] fix empty video player --- source/UI/js/Video/VideoPlayer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/UI/js/Video/VideoPlayer.js b/source/UI/js/Video/VideoPlayer.js index c192b069..96f71e91 100644 --- a/source/UI/js/Video/VideoPlayer.js +++ b/source/UI/js/Video/VideoPlayer.js @@ -2368,6 +2368,8 @@ Ox.VideoPlayer = function(options, self) { self.video = getVideo(); } else { self.video = self.options.video; + self.resolutions = []; + self.audioTracks = []; } }