forked from External/greenlight
use new latest id from page in setup
This commit is contained in:
parent
f63ea9c4b8
commit
98a8cdbd2a
|
@ -26,7 +26,7 @@
|
||||||
var initRooms = function() {
|
var initRooms = function() {
|
||||||
App.messages = App.cable.subscriptions.create({
|
App.messages = App.cable.subscriptions.create({
|
||||||
channel: 'MeetingUpdatesChannel',
|
channel: 'MeetingUpdatesChannel',
|
||||||
encrypted_id: Meeting.getInstance().getId()
|
encrypted_id: $(".page-wrapper").data('id')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
received: function(data) {
|
received: function(data) {
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
var initRooms = function() {
|
var initRooms = function() {
|
||||||
App.messages = App.cable.subscriptions.create({
|
App.messages = App.cable.subscriptions.create({
|
||||||
channel: 'RecordingUpdatesChannel',
|
channel: 'RecordingUpdatesChannel',
|
||||||
encrypted_id: Meeting.getInstance().getId()
|
encrypted_id: $(".page-wrapper").data('id')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
received: function(data) {
|
received: function(data) {
|
||||||
|
|
Loading…
Reference in New Issue