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
2dea3ba0
authored
2014-01-08 11:24:57 -0800
by
Tom Johnson
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix for try catch on Flash element
1 parent
b6773f6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
src/videojs-hls.js
src/videojs-hls.js
View file @
2dea3ba
...
...
@@ -109,9 +109,7 @@ var
return
1
;
// HAVE_METADATA
};
if
(
player
.
ha
===
"Flash"
)
{
player
.
currentTime
=
function
(
value
)
{
player
.
currentTime
=
function
(
value
)
{
if
(
value
)
{
try
{
player
.
el
().
getElementsByClassName
(
'vjs-tech'
)[
0
].
vjs_setProperty
(
'currentTime'
,
0
);
...
...
@@ -127,8 +125,7 @@ var
return
0
;
}
}
};
}
};
player
.
hls
.
selectSegmentByTime
=
function
(
time
)
{
var
index
,
currentSegment
;
...
...
@@ -245,12 +242,10 @@ var
// update the duration
player
.
duration
(
parser
.
manifest
.
totalDuration
);
// Notify the flash layer
if
(
player
.
ha
===
"Flash"
)
{
try
{
player
.
el
().
getElementsByClassName
(
'vjs-tech'
)[
0
].
vjs_setProperty
(
'duration'
,
parser
.
manifest
.
totalDuration
);
}
catch
(
err
)
{
try
{
player
.
el
().
getElementsByClassName
(
'vjs-tech'
)[
0
].
vjs_setProperty
(
'duration'
,
parser
.
manifest
.
totalDuration
);
}
catch
(
err
)
{
}
}
}
player
.
trigger
(
'loadedmanifest'
);
...
...
Please
register
or
sign in
to post a comment