Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 19c3af3

Browse files
committedMay 24, 2024
updated to 3.7.0
1 parent 4009a59 commit 19c3af3

7 files changed

+11
-10
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To get started, clone the repo:
4040
| userName | Required, a name for the user joining / starting the meeting / webinar. |
4141
| userEmail | Required for Webinar, optional for Meeting, required for meeting and webinar if [registration is required](https://support.zoom.us/hc/en-us/articles/360054446052-Managing-meeting-and-webinar-registration). The email of the user starting or joining the meeting / webinar. |
4242
| registrantToken | Required if your [meeting](https://developers.zoom.us/docs/meeting-sdk/web/client-view/meetings/#join-meeting-with-registration-required) or [webinar](https://developers.zoom.us/docs/meeting-sdk/web/client-view/webinars/#join-webinar-with-registration-required) requires [registration](https://support.zoom.us/hc/en-us/articles/360054446052-Managing-meeting-and-webinar-registration). |
43-
| zakToken | Required to start meetings or webinars on external Zoom user's behalf, the [authorized Zoom user's ZAK token](https://developers.zoom.us/docs/meeting-sdk/auth/#start-meetings-and-webinars-with-a-zoom-users-zak-token). |
43+
| zakToken | Required to start meetings or webinars on external Zoom user's behalf, the [authorized Zoom user's ZAK token](https://developers.zoom.us/docs/meeting-sdk/auth/#start-meetings-and-webinars-with-a-zoom-users-zak-token). The ZAK can also be used to join as an [authenticated participant](https://support.zoom.com/hc/en/article?id=zm_kb&sysparm_article=KB0063837). |
4444
| leaveUrl | Required for Client View, the url the user is taken to once the meeting is over. |
4545

4646
Example:

‎package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meetingsdk-angular-sample",
3-
"version": "3.6.0",
3+
"version": "3.7.0",
44
"author": "Zoom Video Communications, Inc.",
55
"contributors": [
66
{
@@ -25,7 +25,7 @@
2525
"@angular/platform-browser": "^16.2.10",
2626
"@angular/platform-browser-dynamic": "^16.2.10",
2727
"@angular/router": "^16.2.10",
28-
"@zoom/meetingsdk": "^3.6.0",
28+
"@zoom/meetingsdk": "^3.7.0",
2929
"rxjs": "^7.8.1",
3030
"tslib": "^2.6.2",
3131
"zone.js": "~0.13.0"

‎src/app/app-new.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class AppComponent implements OnInit {
5252
let meetingSDKElement = document.getElementById('meetingSDKElement');
5353

5454
this.ngZone.runOutsideAngular(() => {
55-
this.client.init({zoomAppRoot: meetingSDKElement, language: 'en-US', patchJsMedia: true}).then(() => {
55+
this.client.init({zoomAppRoot: meetingSDKElement, language: 'en-US', patchJsMedia: true, leaveOnPageUnload: true}).then(() => {
5656
this.client.join({
5757
signature: signature,
5858
sdkKey: this.sdkKey,

‎src/app/app.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export class AppComponent implements OnInit {
5757
ZoomMtg.init({
5858
leaveUrl: this.leaveUrl,
5959
patchJsMedia: true,
60+
leaveOnPageUnload: true,
6061
success: (success) => {
6162
console.log(success)
6263
ZoomMtg.join({
Loading
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.