1
0
mirror of https://github.com/videojs/video.js.git synced 2025-07-03 00:57:02 +02:00

@dmlap Add network and ready state properties. closes #1854

This commit is contained in:
David LaPalomento
2015-02-12 18:26:32 -05:00
parent 3742afe607
commit 5e371b4625
5 changed files with 54 additions and 5 deletions

View File

@ -281,7 +281,7 @@ vjs.Html5.prototype.playbackRate = function(){ return this.el_.playbackRate; };
vjs.Html5.prototype.setPlaybackRate = function(val){ this.el_.playbackRate = val; };
vjs.Html5.prototype.networkState = function(){ return this.el_.networkState; };
vjs.Html5.prototype.readyState = function(){ return this.el_.readyState; };
/**
* Check if HTML5 video is supported by this browser/device