missing semicolons
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -2309,8 +2309,8 @@ test('does not download segments if preload option set to none', function() { | ... | @@ -2309,8 +2309,8 @@ test('does not download segments if preload option set to none', function() { |
2309 | type: 'application/vnd.apple.mpegurl' | 2309 | type: 'application/vnd.apple.mpegurl' |
2310 | }); | 2310 | }); |
2311 | 2311 | ||
2312 | tech.vjs_getProperty = function(property) { return properties[property] }; | 2312 | tech.vjs_getProperty = function(property) { return properties[property]; }; |
2313 | tech.vjs_setProperty = function(property, value) { properties[property] = value }; | 2313 | tech.vjs_setProperty = function(property, value) { properties[property] = value; }; |
2314 | player.preload('none'); | 2314 | player.preload('none'); |
2315 | 2315 | ||
2316 | player.hls.loadSegment = function () { | 2316 | player.hls.loadSegment = function () { | ... | ... |
-
Please register or sign in to post a comment