aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-02-14 01:59:43 +0800
committerDan <danjm.com@gmail.com>2018-02-14 02:50:24 +0800
commit5e9dc74a59d2507f36e1cb5796f97982f5f4993d (patch)
tree00a3e46390e3d3afc46c928409c0bc7dcf4acd3f /ui/app
parentb5b16e4ce09b5fa27ce4775b30a44bacea7ee329 (diff)
downloadtangerine-wallet-browser-5e9dc74a59d2507f36e1cb5796f97982f5f4993d.tar.gz
tangerine-wallet-browser-5e9dc74a59d2507f36e1cb5796f97982f5f4993d.tar.zst
tangerine-wallet-browser-5e9dc74a59d2507f36e1cb5796f97982f5f4993d.zip
Remove isInBrowser method and use environment-type.js
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/unlock.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/ui/app/unlock.js b/ui/app/unlock.js
index db88fa9d0..13c3f1274 100644
--- a/ui/app/unlock.js
+++ b/ui/app/unlock.js
@@ -6,6 +6,7 @@ const actions = require('./actions')
const getCaretCoordinates = require('textarea-caret')
const EventEmitter = require('events').EventEmitter
const { OLD_UI_NETWORK_TYPE } = require('../../app/scripts/config').enums
+const environmentType = require('../../app/scripts/lib/environment-type')
const Mascot = require('./components/mascot')
@@ -77,12 +78,9 @@ UnlockScreen.prototype.render = function () {
h('p.pointer', {
onClick: () => {
this.props.dispatch(actions.markPasswordForgotten())
- global.platform.isInBrowser()
- .then((isInBrowser) => {
- if (!isInBrowser) {
- global.platform.openExtensionInBrowser()
- }
- })
+ if (environmentType() === 'popup') {
+ global.platform.openExtensionInBrowser()
+ }
},
style: {
fontSize: '0.8em',