Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
f251cf3c
authored
2014-03-12 14:54:27 -0400
by
Gary Katsevman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Don't init plugin if Uint8Array isn't available
1 parent
a9304cf3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
src/videojs-hls.js
src/videojs-hls.js
View file @
f251cf3
...
...
@@ -591,6 +591,10 @@ var
};
videojs
.
plugin
(
'hls'
,
function
()
{
if
(
typeof
Uint8Array
===
'undefined'
)
{
return
;
}
var
initialize
=
function
()
{
return
function
()
{
this
.
hls
=
initialize
();
...
...
Please
register
or
sign in
to post a comment