Ticket #1858: popupContainer_1.patch
| File popupContainer_1.patch, 0.5 kB (added by ornus, 2 years ago) |
|---|
-
PopupContainer.js
369 369 this.unRegisterAllWindows = function(){ 370 370 // summary: remove listeners on all the registered windows 371 371 for(var i=0;i<this.registeredWindows.length;++i){ 372 this.unRegisterWin(this.registeredWindows[i]); 372 try { 373 this.unRegisterWin(this.registeredWindows[i]); 374 } 375 catch( e ){} 373 376 } 374 377 this.registeredWindows = []; 375 378 };