Skip to content

Commit

Permalink
Added readyState attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
piranna committed May 2, 2013
1 parent 3e85b00 commit 7d9fb17
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions dist/reliable.js
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,13 @@ Reliable.prototype.removeEventListener = function(type, listener)
this._dc.removeEventListener(type, listener)
};


Reliable.prototype.__defineGetter__("readyState", function()
{
return this._dc.readyState;
});


// Ups bandwidth limit on SDP. Meant to be called during offer/answer.
Reliable.higherBandwidthSDP = function(sdp) {
// AS stands for Application-Specific Maximum.
Expand Down
Loading

0 comments on commit 7d9fb17

Please sign in to comment.