Make roomInfo a global var

master
Daniel Berteaud 10 years ago
parent a0273ab7aa
commit b5a87581d5
  1. 4
      public/js/vroom.js

@ -31,6 +31,7 @@ var itemPerPage = 20;
// Will store the global webrtc object // Will store the global webrtc object
var webrtc = undefined; var webrtc = undefined;
var roomInfo = {};
// Mark current page link as active // Mark current page link as active
$('#lnk_' + page).addClass('active'); $('#lnk_' + page).addClass('active');
@ -676,7 +677,6 @@ function initJoin(room){
} }
}); });
function try_auth(pass, hideErrorMsg){ function try_auth(pass, hideErrorMsg){
$.ajax({ $.ajax({
data: { data: {
@ -689,6 +689,7 @@ function initJoin(room){
}) })
}, },
error: function(data){ error: function(data){
// 401 means password is missing or incorrect
if (data.status === 401){ if (data.status === 401){
$('#auth-before-join').slideDown(); $('#auth-before-join').slideDown();
} }
@ -740,7 +741,6 @@ function initVroom(room) {
hasVideo: true hasVideo: true
} }
}; };
var roomInfo;
var mainVid = false, var mainVid = false,
chatHistory = {}, chatHistory = {},
chatIndex = 0, chatIndex = 0,

Loading…
Cancel
Save