9 |
404 Not Found
10 |
You can create a new conversation here
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/docs/static/authError.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
Thank you for your feedback!
13 |
14 |
15 |
16 | Did you know?
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/docs/static/close.js:
--------------------------------------------------------------------------------
1 | /* global interfaceConfig */
2 | // list of tips
3 | const hints = [
4 | 'You can pin participants by clicking on their thumbnails.',
5 | 'You can tell others you have something to say by using the "Raise Hand" '
6 | + 'feature',
7 | 'You can learn about key shortcuts by pressing Shift+?',
8 | 'You can learn more about the state of everyone\'s connection by hovering '
9 | + 'on the bars in their thumbnail',
10 | 'You can hide all thumbnails by using the button in the bottom right corner'
11 | ];
12 |
13 | /**
14 | * Get a random hint message from hint array.
15 | *
16 | * @return {string} the hint message.
17 | */
18 | function getHint() {
19 | const l = hints.length - 1;
20 | const n = Math.round(Math.random() * l);
21 |
22 | return hints[n];
23 | }
24 |
25 | /**
26 | * Inserts text message
27 | * into DOM element
28 | *
29 | * @param id {string} element identificator
30 | * @param msg {string} text message
31 | */
32 | function insertTextMsg(id, msg) {
33 | const el = document.getElementById(id);
34 |
35 | if (el) {
36 | el.innerHTML = msg;
37 | }
38 | }
39 |
40 | /**
41 | * Sets the hint and thanks messages. Will be executed on load event.
42 | */
43 | function onLoad() {
44 | // Intentionally use string concatenation as this file does not go through
45 | // babel but IE11 is still supported.
46 | // eslint-disable-next-line prefer-template
47 | const thankYouMessage = 'Thank you for using ' + interfaceConfig.APP_NAME;
48 |
49 | // Works only for close2.html because close.html doesn't have this element.
50 | insertTextMsg('thanksMessage', thankYouMessage);
51 |
52 | // If there is a setting show a special message only for the guests
53 | if (interfaceConfig.CLOSE_PAGE_GUEST_HINT) {
54 | if (window.sessionStorage.getItem('guest') === 'true') {
55 | const element = document.getElementById('hintQuestion');
56 |
57 | element.classList.add('hide');
58 | insertTextMsg('hintMessage', interfaceConfig.CLOSE_PAGE_GUEST_HINT);
59 |
60 | return;
61 | }
62 | }
63 |
64 | insertTextMsg('hintMessage', getHint());
65 | }
66 |
67 | window.onload = onLoad;
68 |
--------------------------------------------------------------------------------
/docs/static/close2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
14 |
15 |
16 | Did you know?
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/docs/static/close3.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inspired-futures/ipade/24a4ffb9324cebfabd3bdf9b00daceffaa9b8765/docs/static/close3.html
--------------------------------------------------------------------------------
/docs/static/close3.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inspired-futures/ipade/24a4ffb9324cebfabd3bdf9b00daceffaa9b8765/docs/static/close3.js
--------------------------------------------------------------------------------
/docs/static/dialInInfo.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
52 |
59 |
Connection error
60 | Your device may be offline or our servers may be experiencing problems.
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/docs/static/planLimit.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/inspired-futures/ipade/24a4ffb9324cebfabd3bdf9b00daceffaa9b8765/docs/static/planLimit.html
--------------------------------------------------------------------------------
/docs/static/prejoin.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |