Merge pull request #504 from sharetribe/fix-modal-scrolling-cleanup

Enable scrolling when modal is unmount
This commit is contained in:
Kimmo Puputti 2017-10-17 13:43:25 +03:00 committed by GitHub
commit c4f5675cd3

View file

@ -39,7 +39,9 @@ export class ModalComponent extends Component {
}
componentWillUnmount() {
const { id, onManageDisableScrolling } = this.props;
document.body.removeEventListener('keyup', this.handleBodyKeyUp);
onManageDisableScrolling(id, false);
}
handleBodyKeyUp(event) {