fix(iframe_api): s/getNumberOfParticipant/getNumberOfParticipants

This commit is contained in:
hristoterezov 2017-01-18 14:16:11 -06:00
parent 8844f83a59
commit 207ac47aa7
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ api.removeEventListeners(["incomingMessage", "outgoingMessageListener"]);
You can get the number of participants in the conference with the following code:
```
var numberOfParticipants = api.getNumberOfParticipant();
var numberOfParticipants = api.getNumberOfParticipants();
```
You can remove the embedded Jitsi Meet Conference with the following code:

View File

@ -352,7 +352,7 @@ JitsiMeetExternalAPI.prototype.removeEventListeners = function(events) {
* NOTE: the local participant is included.
* @returns {int} the number of participants in the conference.
*/
JitsiMeetExternalAPI.prototype.getNumberOfParticipant = function() {
JitsiMeetExternalAPI.prototype.getNumberOfParticipants = function() {
return this.numberOfParticipants;
};