Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Commit 7c10ff7

Browse files
author
Valentin
committed
CCB-1527 fix typos and remove unused properties
1 parent a153227 commit 7c10ff7

File tree

4 files changed

+10
-28
lines changed

4 files changed

+10
-28
lines changed

README.md

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -23,32 +23,15 @@ For example, the layout may be equal sized tiles for the majority of the video b
2323
These inputs and buttons are required and in this app they are found in the file `src/app/components/ConferenceRoom.js`.
2424

2525
```html
26-
<input
27-
type="hidden"
28-
value="accessToken"
29-
id="accessToken"
30-
name="accessToken"
31-
/>
32-
<input
33-
type="hidden"
34-
value="refreshToken"
35-
id="refreshToken"
36-
name="refreshToken"
37-
/>
26+
<input type="hidden" value="accessToken" id="accessToken" name="accessToken"/>
27+
<input type="hidden" value="refreshToken" id="refreshToken" name="refreshToken"/>
3828
<input type="hidden" value="catToken" id="catToken" name="catToken" />
3929
<input type="hidden" value="voxeet" id="conferenceId" name="conferenceId" />
4030
<input type="hidden" value="refreshUrl" id="refreshUrl" name="refreshUrl" />
4131
<input type="hidden" value="1234" id="thirdPartyId" name="thirdPartyId" />
4232
<input type="hidden" value="stream" id="layoutType" name="layoutType" />
43-
<button id="joinConference" onClick="{this.launchConference.bind(this)}">
44-
Join conference
45-
</button>
46-
<button
47-
id="replayConference"
48-
onClick="{this.launchReplayConference.bind(this)}"
49-
>
50-
Replay conference
51-
</button>
33+
<button id="joinConference" onClick="{this.launchConference.bind(this)}">Join conference</button>
34+
<button id="replayConference" onClick="{this.launchReplayConference.bind(this)}">Replay conference</button>
5235
```
5336

5437
The Platform triggers either the `joinConference` button or the `replayConference` button, depending on whether the conference is live or a replay.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@
3838
},
3939
"scripts": {
4040
"start": "webpack-dev-server -d",
41-
"build": "npx webpack --output-filename out.js --output-path dist"
41+
"build": "npx webpack --output-filename out.js --output-path dist"
4242
}
4343
}

src/app/actions/ConferenceActions.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ export class Actions {
8989
enabled: true,
9090
},
9191
userParams,
92-
audio3D: false,
9392
})
9493
.then((payload) => {
9594
console.log("Media Recorded Url : " + mediaRecordedUrl);

src/app/components/ConferenceRoom.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ class ConferenceRoom extends Component {
249249
filePresentationMode,
250250
videoPresentationMode,
251251
} = this.props.conferenceStore;
252-
const { isLaunch, layoutType } = this.state;
252+
const { isLaunch } = this.state;
253253
let count = -1;
254254
let participantConnected = participants.filter((p) => p.isConnected);
255255
return (
@@ -258,8 +258,8 @@ class ConferenceRoom extends Component {
258258
{isDemo && !isLaunch && (
259259
<div>
260260
<div className="container-test">
261-
<h1>Voxeet Layout Testing</h1>
262-
{(consumerKey == null || consumerKey == null) && (
261+
<h1>Dolby Mixer Layout Testing</h1>
262+
{(consumerKey == null || consumerSecret == null) && (
263263
<div className="keys-missing-test">
264264
Missing consumerKey / consumerSecret inside index.js
265265
</div>
@@ -276,7 +276,7 @@ class ConferenceRoom extends Component {
276276
<div>
277277
<h3>Live conference</h3>
278278
<input
279-
placeholder="Conference name"
279+
placeholder="Conference alias"
280280
id="conferenceNameTest"
281281
name="conferenceNameTest"
282282
/>
@@ -304,7 +304,7 @@ class ConferenceRoom extends Component {
304304
<div>
305305
<h3>Live protected conference</h3>
306306
<input
307-
placeholder="Conference name"
307+
placeholder="Conference alias"
308308
id="conferenceNameCatTest"
309309
name="conferenceNameCatTest"
310310
/>

0 commit comments

Comments
 (0)