Re: [webrtc-pc] Add legacy note about addStream.

if we do it then write it like this
```
RTCPeerConnection.prototype.addStream = function(stream) {
  var pc = this;
  stream.getTracks.forEach(function(track) {
    pc.addTrack(track, stream);
  });
};
```
as a pre class="example highlight"?

-- 
GitHub Notification of comment by fippo
Please view or discuss this issue at https://github.com/w3c/webrtc-pc/pull/1451#issuecomment-313154088 using your GitHub account

Received on Wednesday, 5 July 2017 16:23:59 UTC