You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
<h1 slot="question">Do you like my presentation so far?</h1>
33
33
<p slot="answer-1">It is super</p>
34
34
<p slot="answer-2">Meh</p>
35
35
<p slot="answer-3">I could'nt care less</p>
36
36
<p slot="answer-4">Tell me why</p>
37
-
<p slot="how-to">Go to <a href="https://poll.deckdeckgo.com">poll.deckdeckgo.com</a> and use the code {0}</p>
37
+
<p slot="how-to">Go to <a href="https://deckdeckgo.com/poll">deckdeckgo.com/poll</a> and use the code {0}</p>
38
38
<p slot="awaiting-votes">Awaiting first votes</p>
39
39
<p slot="answer-5">Ain't nothin' but a heartache</p>
40
40
</deckgo-slide-poll>
@@ -101,7 +101,7 @@ The "Poll" slide's Web Component could be integrated using the tag `<deckgo-slid
101
101
<p slot="answer-3">I could'nt care less</p>
102
102
<p slot="answer-4">Tell me why</p>
103
103
<p slot="answer-5">Ain't nothin' but a heartache</p>
104
-
<p slot="how-to">Go to <a href="https://poll.deckdeckgo.com">poll.deckdeckgo.com</a> and use the code {0}</p>
104
+
<p slot="how-to">Go to <a href="https://deckdeckgo.com/poll">deckdeckgo.com/poll</a> and use the code {0}</p>
105
105
<p slot="awaiting-votes">Awaiting first votes</p>
106
106
</deckgo-slide-poll>
107
107
```
@@ -129,7 +129,7 @@ This component offers the following options which could be set using attributes:
129
129
| socketUrl | string |`https://api.deckdeckgo.com`| The url of the socket (server) where the poll (chat room) is going to be created. |
130
130
| socketPath | string |`/poll`| The path to reach the socket server |
131
131
| connectPollSocket | boolean |`true`| In case you would not like that the template try to reach the socket server |
132
-
| pollLink | string |`https://poll.deckdeckgo.com`| The url which leads to the voting application respectively where your audience will be available to make their voice heard aka where they will be able to vote. |
132
+
| pollLink | string |`https://deckdeckgo.com/poll`| The url which leads to the voting application respectively where your audience will be available to make their voice heard aka where they will be able to vote. |
133
133
| pollKey | string || Per default the template will always try to create a new poll but if you set this value, it will try to retrieve an existing poll |
<p>The "Poll" slide's Web Component could be integrated using the tag <code><deckgo-slide-poll/></code>.</p>
101
101
<deckgo-highlight-codelanguage="javascript">
102
-
<codeslot="code"><deckgo-slide-poll poll-link="https://deckdeckgo.com" socket-url="https://api.deckdeckgo.com">{'\n'} <h1 slot="question">Do you like my presentation so far?</h1>{'\n'} <p slot="answer-1">It is super</p>{'\n'} <p slot="answer-2">Meh</p>{'\n'} <p slot="answer-3">I could'nt care less</p>{'\n'} <p slot="answer-4">Tell me why</p>{'\n'} <p slot="answer-5">Ain't nothin' but a heartache</p>{'\n'} <p slot="how-to">Go to <a href="https://poll.deckdeckgo.com">poll.deckdeckgo.com</a> and use the code {0}</p>{'\n'} <p slot="awaiting-votes">Awaiting first votes</p>{'\n'}</deckgo-slide-poll></code>
102
+
<codeslot="code"><deckgo-slide-poll poll-link="https://deckdeckgo.com" socket-url="https://api.deckdeckgo.com">{'\n'} <h1 slot="question">Do you like my presentation so far?</h1>{'\n'} <p slot="answer-1">It is super</p>{'\n'} <p slot="answer-2">Meh</p>{'\n'} <p slot="answer-3">I could'nt care less</p>{'\n'} <p slot="answer-4">Tell me why</p>{'\n'} <p slot="answer-5">Ain't nothin' but a heartache</p>{'\n'} <p slot="how-to">Go to <a href="https://deckdeckgo.com/poll">deckdeckgo.com/poll</a> and use the code {0}</p>{'\n'} <p slot="awaiting-votes">Awaiting first votes</p>{'\n'}</deckgo-slide-poll></code>
<p>The slots <code>question</code> and at least one <code>answer</code> should be provided. Answer slots have to be provided as <code>answer-x</code> where <code>x</code> is a number bigger than 0.</p>
105
105
<p>The slot <code>how-to</code> and <code>awaiting-votes</code> are optional, still, it's probably for best of your audience to provide these.</p>
@@ -139,7 +139,7 @@ export class AppSlidePoll {
139
139
<tr>
140
140
<td>pollLink</td>
141
141
<td>string</td>
142
-
<td><code>https://poll.deckdeckgo.com</code></td>
142
+
<td><code>https://deckdeckgo.com/poll</code></td>
143
143
<td>The url which leads to the voting application respectively where your audience will be available to make their voice heard aka where they will be able to vote.</td>
Copy file name to clipboardExpand all lines: studio/src/app/utils/editor/create-slides.utils.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -316,7 +316,7 @@ export class CreateSlidesUtils {
316
316
{questionSlot}
317
317
{...answerSlots}
318
318
319
-
<divslot="how-to">Go to <ahref={EnvironmentConfigService.getInstance().get('deckdeckgo').pollUrl}>poll.deckdeckgo.com</a> and use the code {'{0}'}</div>
319
+
<divslot="how-to">Go to <ahref={EnvironmentConfigService.getInstance().get('deckdeckgo').pollUrl}>deckdeckgo.com/poll</a> and use the code {'{0}'}</div>
0 commit comments