Add 'createPeer' and 'removePeers' methods from underlying library.

Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Ivan Sein 2017-02-09 13:02:12 +01:00
Родитель 5424498c13
Коммит 39818c5c93
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -18024,7 +18024,7 @@
this.webrtc = new WebRTC(opts);
// attach a few methods from underlying lib to simple.
['mute', 'unmute', 'pauseVideo', 'resumeVideo', 'pause', 'resume', 'sendToAll', 'sendDirectlyToAll', 'getPeers'].forEach(function (method) {
['mute', 'unmute', 'pauseVideo', 'resumeVideo', 'pause', 'resume', 'sendToAll', 'sendDirectlyToAll', 'getPeers', 'createPeer', 'removePeers'].forEach(function (method) {
self[method] = self.webrtc[method].bind(self.webrtc);
});