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

Loading…
Cancel
Save