소스 검색

Clear old modals upon logout

JC Brand 7 년 전
부모
커밋
0339c59390
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      src/converse-modal.js

+ 7 - 0
src/converse-modal.js

@@ -65,6 +65,13 @@
                 }
             });
 
+            _converse.api.listen.on('afterTearDown', () => {
+                const container = _converse.chatboxviews.el.querySelector("#converse-modals");
+                if (container) {
+                    container.innerHTML = '';
+                }
+            });
+
 
             /************************ BEGIN API ************************/
             // We extend the default converse.js API to add methods specific to MUC chat rooms.