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
ed3af99f
authored
2014-10-02 14:12:37 -0400
by
Gary Katsevman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix tests
1 parent
c84a41cb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
package.json
src/playlist-loader.js
package.json
View file @
ed3af99
...
...
@@ -35,7 +35,7 @@
"karma-sauce-launcher"
:
"~0.1.8"
,
"qunitjs"
:
"^1.15.0"
,
"sinon"
:
"1.10.2"
,
"video.js"
:
"^4.
7.2
"
"video.js"
:
"^4.
9.0
"
},
"dependencies"
:
{
"pkcs7"
:
"^0.2.2"
,
...
...
src/playlist-loader.js
View file @
ed3af99
...
...
@@ -58,7 +58,7 @@
haveMetadata
=
function
(
error
,
xhr
,
url
)
{
var
parser
,
refreshDelay
,
update
;
loader
.
bandwidth
=
request
.
bandwidth
||
xhr
.
bandwidth
;
loader
.
bandwidth
=
request
&&
request
.
bandwidth
||
xhr
&&
xhr
.
bandwidth
;
// any in-flight request is now finished
request
=
null
;
...
...
Please
register
or
sign in
to post a comment