소스 검색

fix(aot): Unmount AlwaysOnTop to remove listeners (#2307)

master
hristoterezov 8 년 전
부모
커밋
d6c3ab64fa
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      react/features/always-on-top/index.js

+ 4
- 0
react/features/always-on-top/index.js 파일 보기

@@ -8,3 +8,7 @@ ReactDOM.render(
8 8
     <AlwaysOnTop />,
9 9
     document.getElementById('react')
10 10
 );
11
+
12
+window.addEventListener('beforeunload', () => {
13
+    ReactDOM.unmountComponentAtNode(document.getElementById('react'));
14
+});

Loading…
취소
저장