Merge pull request #478 from nextcloud/fix-slow-update-of-join-leave-call-button

Fix slow update of "Join/leave call" button
This commit is contained in:
Ivan Sein 2017-11-15 17:09:52 +01:00 коммит произвёл GitHub
Родитель 4808f22482 2004490b37
Коммит 06b62d8c56
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -661,10 +661,16 @@ var spreedPeerConnectionTable = [];
});
OCA.SpreedMe.webrtc.on('joinedCall', function() {
OCA.SpreedMe.app.syncRooms();
$('#app-content').removeClass('icon-loading');
$('.videoView').removeClass('hidden');
});
OCA.SpreedMe.webrtc.on('leftCall', function() {
OCA.SpreedMe.app.syncRooms();
});
OCA.SpreedMe.webrtc.on('channelOpen', function(channel) {
console.log('%s datachannel is open', channel.label);
});