Pass parameter to close page about current participant is it guest.

pull/1219/head
damencho 9 years ago
parent 593de63d49
commit 282defc54c
  1. 6
      conference.js

@ -196,9 +196,11 @@ function maybeRedirectToWelcomePage(options) {
// if close page is enabled redirect to it, without further action
if (config.enableClosePage) {
if (options.feedbackSubmitted)
window.location.pathname = "close.html";
window.location.pathname = "close.html?guest="
+ APP.tokenData.isGuest;
else
window.location.pathname = "close2.html";
window.location.pathname = "close2.html?guest="
+ APP.tokenData.isGuest;
return;
}

Loading…
Cancel
Save