1a64c949 by Tom Johnson Committed by David LaPalomento

Update plugin to add hls to default tech order

1 parent aecdda0d
...@@ -756,4 +756,7 @@ resolveUrl = videojs.Hls.resolveUrl = function(basePath, path) { ...@@ -756,4 +756,7 @@ resolveUrl = videojs.Hls.resolveUrl = function(basePath, path) {
756 return result; 756 return result;
757 }; 757 };
758 758
759 // Add HLS to the standard tech order
760 videojs.options.techOrder.push('hls');
761
759 })(window, window.videojs, document); 762 })(window, window.videojs, document);
......