Skip to content

Commit

Permalink
added language functions and updated support text
Browse files Browse the repository at this point in the history
  • Loading branch information
tommygaessler committed Jun 3, 2021
1 parent 0de8d65 commit 7294032
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 25 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ The Angular Sample App can be easily deployed to [GitHub Pages](#github-pages),

For more advanced instructions on deployment, [see the Angular Deployment docs](https://angular.io/guide/deployment).

## Need Support?
## Need help?

The first place to look for help is on our [Developer Forum](https://devforum.zoom.us/), where Zoom Marketplace Developers can ask questions for public answers.

If you can’t find the answer in the Developer Forum or your request requires sensitive information to be relayed, please email us at [email protected].
If you're looking for help, try [Developer Support](https://devsupport.zoom.us) or our [Developer Forum](https://devforum.zoom.us). Priority support is also available with [Premier Developer Support](https://zoom.us/docs/en-us/developer-support-plans.html) plans.
51 changes: 32 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import { ZoomMtg } from '@zoomus/websdk';

ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
// loads language files, also passes any error messages to the ui
ZoomMtg.i18n.load('en-US');
ZoomMtg.i18n.reload('en-US');

@Component({
selector: 'app-root',
Expand Down Expand Up @@ -57,8 +60,6 @@ export class AppComponent implements OnInit {
isSupportAV: true,
success: (success) => {
console.log(success)
ZoomMtg.i18n.load('en-US');
ZoomMtg.i18n.reload('en-US');
ZoomMtg.join({
signature: signature,
meetingNumber: this.meetingNumber,
Expand Down

0 comments on commit 7294032

Please sign in to comment.