feat(SideBar): remove event listeners when unmount

although Gitako do not unmount before page unload
This commit is contained in:
EnixCoda 2018-06-16 18:58:01 +08:00
parent 817b173370
commit 85f83decef

View file

@ -83,6 +83,12 @@ export default class SideBar extends React.Component {
}
}
componentWillUnmount() {
window.removeEventListener('pjax:send', this.onPJAXStart)
window.removeEventListener('pjax:complete', this.onPJAXEnd)
window.removeEventListener('keydown', this.onKeyDown)
}
onPJAXStart = () => {
}