- From: Robin Raymond via GitHub <sysbot+gh@w3.org>
- Date: Tue, 19 Apr 2016 16:21:43 +0000
- To: public-ortc@w3.org
robin-raymond has just created a new issue for
https://github.com/openpeer/ortc:
== ongathererstatechange vs onstatechange ==
WebRTC names these events with `ongathererstatechange` vs just
`onstatechange` because these all hang off a bigger peer connection
object. ORTC however does not.
This should change from:
````
partial interface RTCIceGatherer : RTCStatsProvider {
attribute EventHandler?
ongathererstatechange;
}
````
To:
````
partial interface RTCIceGatherer : RTCStatsProvider {
attribute EventHandler? onstatechange;
}
````
Please view or discuss this issue at
https://github.com/openpeer/ortc/issues/475 using your GitHub account
Received on Tuesday, 19 April 2016 16:21:49 UTC