finish meeting class

This commit is contained in:
Zachary Chai
2016-11-10 17:05:43 -05:00
parent ef06c4133b
commit 1d879993d5
5 changed files with 93 additions and 73 deletions

View File

@ -3,14 +3,14 @@
var sessionStatusRefresh = function(url) {
$.get(url + "/session_status_refresh", function(html) {
$(".center-panel-wrapper").html(html);
displayMeetingURL();
displayRoomURL();
});
}
var initRooms = function() {
App.messages = App.cable.subscriptions.create({
channel: 'MeetingUpdatesChannel',
encrypted_id: getEncryptedId()
encrypted_id: Meeting.getInstance().getId()
},
{
received: function(data) {

View File

@ -3,7 +3,7 @@
var initRooms = function() {
App.messages = App.cable.subscriptions.create({
channel: 'RecordingUpdatesChannel',
encrypted_id: getEncryptedId()
encrypted_id: Meeting.getInstance().getId()
},
{
received: function(data) {