Browse Source

Fix JitsiConference.prototype.leave to reference room as this.room

dev1
Issac Gerges 10 years ago
parent
commit
d504f840e7
2 changed files with 7036 additions and 6999 deletions
  1. 1
    1
      JitsiConference.js
  2. 7035
    6998
      lib-jitsi-meet.js

+ 1
- 1
JitsiConference.js View File

39
  * Leaves the conference.
39
  * Leaves the conference.
40
  */
40
  */
41
 JitsiConference.prototype.leave = function () {
41
 JitsiConference.prototype.leave = function () {
42
-    this.xmpp.leaveRoom(room.roomjid);
42
+    this.xmpp.leaveRoom(this.room.roomjid);
43
     this.room = null;
43
     this.room = null;
44
 }
44
 }
45
 
45
 

+ 7035
- 6998
lib-jitsi-meet.js
File diff suppressed because it is too large
View File


Loading…
Cancel
Save