Sfoglia il codice sorgente

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

j8
damencho 8 anni fa
parent
commit
282defc54c
1 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. 4
    2
      conference.js

+ 4
- 2
conference.js Vedi File

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

Loading…
Annulla
Salva