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
5f338d57
authored
2015-05-12 13:21:34 -0400
by
Brandon Bay
Committed by
David LaPalomento
2015-05-19 13:45:35 -0400
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
missing semicolons
1 parent
e0b08967
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
test/videojs-hls_test.js
test/videojs-hls_test.js
View file @
5f338d5
...
...
@@ -2309,8 +2309,8 @@ test('does not download segments if preload option set to none', function() {
type
:
'application/vnd.apple.mpegurl'
});
tech
.
vjs_getProperty
=
function
(
property
)
{
return
properties
[
property
]
};
tech
.
vjs_setProperty
=
function
(
property
,
value
)
{
properties
[
property
]
=
value
};
tech
.
vjs_getProperty
=
function
(
property
)
{
return
properties
[
property
]
;
};
tech
.
vjs_setProperty
=
function
(
property
,
value
)
{
properties
[
property
]
=
value
;
};
player
.
preload
(
'none'
);
player
.
hls
.
loadSegment
=
function
()
{
...
...
Please
register
or
sign in
to post a comment