Skip to content

Commit

Permalink
Merge pull request #817 from fippo/configurable
Browse files Browse the repository at this point in the history
util: make wrapPeerConnectionEvent configurable
  • Loading branch information
fippo authored May 22, 2018
2 parents 54cc8b4 + 4f89e1e commit 5954239
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ function wrapPeerConnectionEvent(window, eventNameToWrap, wrapper) {
this.addEventListener(eventNameToWrap,
this['_on' + eventNameToWrap] = cb);
}
}
},
enumerable: true,
configurable: true
});
}

Expand Down

0 comments on commit 5954239

Please sign in to comment.