5f338d57 by Brandon Bay Committed by David LaPalomento

missing semicolons

1 parent e0b08967
...@@ -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 () {
......