-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from zoom/1.9.8
1.9.8 update
- Loading branch information
Showing
10 changed files
with
39 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,35 +75,35 @@ China CDN ```jssdk.zoomus.cn``` | |
### Include the source | ||
|
||
``` | ||
<script src="https://source.zoom.us/zoom-meeting-1.9.7.min.js"></script> | ||
<script src="https://source.zoom.us/zoom-meeting-1.9.8.min.js"></script> | ||
``` | ||
### or | ||
|
||
``` | ||
npm install @zoomus/[email protected].7 | ||
npm install @zoomus/[email protected].8 | ||
``` | ||
### zoomus-jssdk move to @zoomus/websdk | ||
``` | ||
import { ZoomMtg } from 'zoomus-jssdk'; | ||
change to | ||
import { ZoomMtg } from '@zoomus/websdk'; | ||
``` | ||
Please notice, 1.9.7 release with two ways, the normal way and npm way(need babel and webpack). | ||
Please notice, 1.9.8 release with two ways, the normal way and npm way(need babel and webpack). | ||
|
||
At first, you invoke those three API to init jssdk. | ||
``` | ||
console.log('checkSystemRequirements'); | ||
console.log(JSON.stringify(ZoomMtg.checkSystemRequirements())); | ||
// it's option if you want to change the WebSDK dependency link resources. setZoomJSLib must be run at first | ||
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.9.7/lib', '/av'); // CDN version default | ||
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.9.7/lib', '/av'); // china cdn option | ||
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.9.8/lib', '/av'); // CDN version default | ||
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.9.8/lib', '/av'); // china cdn option | ||
// ZoomMtg.setZoomJSLib('http://localhost:9999/node_modules/@zoomus/websdk/dist/lib', '/av'); // Local version default, Angular Project change to use cdn version | ||
ZoomMtg.preLoadWasm(); | ||
ZoomMtg.prepareJssdk(); | ||
``` | ||
Go to see sample web app (CDN version) how to update 1.9.7 | ||
Go to see sample web app (CDN version) how to update 1.9.8 | ||
|
||
|
||
[![sample](https://zoom.github.io/sample-app-web/img/participent-joined-meeting.png)]() | ||
|