e5a76497 by Gary Katsevman

Remove some commented out code

1 parent a81238c7
...@@ -499,13 +499,6 @@ videojs.Hls.prototype.dispose = function() { ...@@ -499,13 +499,6 @@ videojs.Hls.prototype.dispose = function() {
499 videojs.Flash.prototype.dispose.call(this); 499 videojs.Flash.prototype.dispose.call(this);
500 }; 500 };
501 501
502 //for (var prop in videojs.Flash) {
503 //videojs.Hls[prop] = videojs.Flash[prop];
504 //}
505 //for (prop in videojs.Flash.prototype) {
506 //videojs.Hls.prototype[prop] = videojs.Flash[prop];
507 //}
508
509 videojs.Hls.isSupported = function() { 502 videojs.Hls.isSupported = function() {
510 return videojs.Flash.isSupported() && videojs.MediaSource; 503 return videojs.Flash.isSupported() && videojs.MediaSource;
511 }; 504 };
...@@ -625,8 +618,4 @@ resolveUrl = videojs.Hls.resolveUrl = function(basePath, path) { ...@@ -625,8 +618,4 @@ resolveUrl = videojs.Hls.resolveUrl = function(basePath, path) {
625 return result; 618 return result;
626 }; 619 };
627 620
628 //videojs.Hls.onReady = videojs.Flash.onReady;
629 //videojs.Hls.onEvent = videojs.Flash.onEvent;
630 //videojs.Hls.onError = videojs.Flash.onError;
631
632 })(window, window.videojs, document); 621 })(window, window.videojs, document);
......