diff options
author | Dan J Miller <danjm.com@gmail.com> | 2018-01-24 02:38:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 02:38:39 +0800 |
commit | 62ce65c99ed3e82b034327b2ab20e301675632f5 (patch) | |
tree | 9869d35d41b5b1e9e33fa9ff968afb9d1fa1f0ff /old-ui/app | |
parent | 338ebe5f402ff50dc8d1a91b7b69cd8e262cc789 (diff) | |
parent | 97ca86733cb49750a9909b57ac1f31bc0f49abc5 (diff) | |
download | tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.tar tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.tar.gz tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.tar.bz2 tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.tar.lz tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.tar.xz tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.tar.zst tangerine-wallet-browser-62ce65c99ed3e82b034327b2ab20e301675632f5.zip |
Merge pull request #3069 from tmashuang/uat
Revert integration tests to uat to oldUI
Diffstat (limited to 'old-ui/app')
-rw-r--r-- | old-ui/app/components/loading.js | 12 | ||||
-rw-r--r-- | old-ui/app/conf-tx.js | 6 |
2 files changed, 16 insertions, 2 deletions
diff --git a/old-ui/app/components/loading.js b/old-ui/app/components/loading.js index 163792584..b8e2eb599 100644 --- a/old-ui/app/components/loading.js +++ b/old-ui/app/components/loading.js @@ -11,7 +11,7 @@ function LoadingIndicator () { } LoadingIndicator.prototype.render = function () { - const { isLoading, loadingMessage } = this.props + const { isLoading, loadingMessage, canBypass, bypass } = this.props return ( isLoading ? h('.full-flex-height', { @@ -28,6 +28,16 @@ LoadingIndicator.prototype.render = function () { background: 'rgba(255, 255, 255, 0.8)', }, }, [ + canBypass ? h( 'i.fa.fa-close.cursor-pointer.close-loading', { + style: { + position: 'absolute', + top: '1px', + right: '15px', + color: '#AEAEAE', + }, + onClick: bypass, + }) : null, + h('img', { src: 'images/loading.svg', }), diff --git a/old-ui/app/conf-tx.js b/old-ui/app/conf-tx.js index 5e2ae9e78..1bb8eb97c 100644 --- a/old-ui/app/conf-tx.js +++ b/old-ui/app/conf-tx.js @@ -62,8 +62,12 @@ ConfirmTxScreen.prototype.render = function () { h('.flex-column.flex-grow', [ h(LoadingIndicator, { - isLoading: txData.loadingDefaults, + isLoading: this.state ? !this.state.bypassLoadingScreen : txData.loadingDefaults, loadingMessage: 'Estimating transaction cost…', + canBypass: true, + bypass: () => { + this.setState({bypassLoadingScreen: true}) + }, }), // subtitle and nav |