mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
Merge pull request #140 from trezor/fix/disable-react
Disable whole app on "window.onbeforeunload" event
This commit is contained in:
commit
2831b7d254
@ -2,9 +2,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { render } from 'react-dom';
|
import { render } from 'react-dom';
|
||||||
import baseStyles from 'support/styles';
|
import baseStyles from 'support/styles';
|
||||||
import { onBeforeUnload } from 'actions/WalletActions';
|
|
||||||
import App from 'views/index';
|
import App from 'views/index';
|
||||||
import store from './store';
|
|
||||||
|
|
||||||
const root: ?HTMLElement = document.getElementById('root');
|
const root: ?HTMLElement = document.getElementById('root');
|
||||||
if (root) {
|
if (root) {
|
||||||
@ -13,7 +11,8 @@ if (root) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
window.onbeforeunload = () => {
|
window.onbeforeunload = () => {
|
||||||
store.dispatch(onBeforeUnload());
|
// $FlowIssue: render empty component
|
||||||
|
render(null, root);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Application life cycle starts in services/WalletService.js
|
// Application life cycle starts in services/WalletService.js
|
Loading…
Reference in New Issue
Block a user