Pass parameter to close page about current participant is it guest.
This commit is contained in:
parent
593de63d49
commit
282defc54c
|
@ -196,9 +196,11 @@ function maybeRedirectToWelcomePage(options) {
|
||||||
// if close page is enabled redirect to it, without further action
|
// if close page is enabled redirect to it, without further action
|
||||||
if (config.enableClosePage) {
|
if (config.enableClosePage) {
|
||||||
if (options.feedbackSubmitted)
|
if (options.feedbackSubmitted)
|
||||||
window.location.pathname = "close.html";
|
window.location.pathname = "close.html?guest="
|
||||||
|
+ APP.tokenData.isGuest;
|
||||||
else
|
else
|
||||||
window.location.pathname = "close2.html";
|
window.location.pathname = "close2.html?guest="
|
||||||
|
+ APP.tokenData.isGuest;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue