Sfoglia il codice sorgente

feat(JitsiConference): add 'getConnection' getter

Adds a getter to retrieve JitsiConnection instance used by
the JitsiConference.
dev1
paweldomas 7 anni fa
parent
commit
71afb6e0fd
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. 7
    0
      JitsiConference.js

+ 7
- 0
JitsiConference.js Vedi File

441
     return this.options.name;
441
     return this.options.name;
442
 };
442
 };
443
 
443
 
444
+/**
445
+ * Returns the {@link JitsiConnection} used by this this conference.
446
+ */
447
+JitsiConference.prototype.getConnection = function() {
448
+    return this.connection;
449
+};
450
+
444
 /**
451
 /**
445
  * Check if authentication is enabled for this conference.
452
  * Check if authentication is enabled for this conference.
446
  */
453
  */

Loading…
Annulla
Salva