浏览代码

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

j8
damencho 8 年前
父节点
当前提交
282defc54c
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4
    2
      conference.js

+ 4
- 2
conference.js 查看文件

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

正在加载...
取消
保存