Browse Source

Fixes issue #716

master
hristoterezov 9 years ago
parent
commit
e46d45adea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/API/external/external_api.js

+ 1
- 1
modules/API/external/external_api.js View File

@@ -345,7 +345,7 @@ JitsiMeetExternalAPI.prototype.removeEventListeners = function(events) {
345 345
  * Removes the listeners and removes the Jitsi Meet frame.
346 346
  */
347 347
 JitsiMeetExternalAPI.prototype.dispose = function() {
348
-    this.postis.dispose();
348
+    this.postis.destroy();
349 349
     var frame = document.getElementById(this.frameName);
350 350
     if(frame)
351 351
         frame.src = 'about:blank';

Loading…
Cancel
Save