Browse Source

Fixed indentation.

pull/32/head
Simon Eisenmann 12 years ago
parent
commit
471b46c3f1
  1. 3
      static/js/mediastream/peercall.js

3
static/js/mediastream/peercall.js

@ -132,9 +132,8 @@ define(['jquery', 'underscore', 'mediastream/utils', 'mediastream/peerconnection
// after the remote SDP was set successfully. // after the remote SDP was set successfully.
_.defer(_.bind(function() { _.defer(_.bind(function() {
_.each(peerconnection.getRemoteStreams(), _.bind(function(stream) { _.each(peerconnection.getRemoteStreams(), _.bind(function(stream) {
console.log("got stream after remote sdp", stream);
if (!this.streams.hasOwnProperty(stream)) { if (!this.streams.hasOwnProperty(stream)) {
console.log("adding stream", stream); console.log("Adding stream after remote SDP success.", stream);
this.onRemoteStreamAdded(stream); this.onRemoteStreamAdded(stream);
} }
}, this)); }, this));

Loading…
Cancel
Save