559f6ddc by Tom Johnson Committed by David LaPalomento

update exmaple page with new implementation

1 parent 1a64c949
...@@ -63,12 +63,7 @@ ...@@ -63,12 +63,7 @@
63 <script> 63 <script>
64 videojs.options.flash.swf = 'node_modules/video.js/dist/video-js/video-js.swf'; 64 videojs.options.flash.swf = 'node_modules/video.js/dist/video-js/video-js.swf';
65 // initialize the player 65 // initialize the player
66 var player = videojs('video', { 66 var player = videojs('video');
67 techOrder: ['hls']
68 });
69
70 // initialize the plugin
71 //player.hls()
72 </script> 67 </script>
73 </body> 68 </body>
74 </html> 69 </html>
......