aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/create-account/connect-hardware/index.js
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-13 14:03:54 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-13 14:03:54 +0800
commit82a93bb2872809df19744afdd95c68485c0dcd25 (patch)
tree2cfe3f88cb6d8a93d137b144dc0831db73de9eda /ui/app/components/pages/create-account/connect-hardware/index.js
parentd23227dc4faf8c859073d1918dd41bd0d7a71d4a (diff)
downloadtangerine-wallet-browser-82a93bb2872809df19744afdd95c68485c0dcd25.tar.gz
tangerine-wallet-browser-82a93bb2872809df19744afdd95c68485c0dcd25.tar.zst
tangerine-wallet-browser-82a93bb2872809df19744afdd95c68485c0dcd25.zip
detect ability to open popup instead of browser
Diffstat (limited to 'ui/app/components/pages/create-account/connect-hardware/index.js')
-rw-r--r--ui/app/components/pages/create-account/connect-hardware/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/components/pages/create-account/connect-hardware/index.js b/ui/app/components/pages/create-account/connect-hardware/index.js
index fa9cf4894..689e88f2e 100644
--- a/ui/app/components/pages/create-account/connect-hardware/index.js
+++ b/ui/app/components/pages/create-account/connect-hardware/index.js
@@ -16,6 +16,7 @@ class ConnectHardwareForm extends Component {
btnText: context.t('connectToTrezor'),
selectedAccount: null,
accounts: [],
+ browserSupported: true,
}
}
@@ -78,6 +79,9 @@ class ConnectHardwareForm extends Component {
}
})
.catch(e => {
+ if (e === 'Window blocked') {
+ this.setState({ browserSupported: false })
+ }
this.setState({ btnText: this.context.t('connectToTrezor') })
})
}
@@ -125,6 +129,7 @@ class ConnectHardwareForm extends Component {
return h(ConnectScreen, {
connectToTrezor: this.connectToTrezor,
btnText: this.state.btnText,
+ browserSupported: this.state.browserSupported,
})
}