diff options
Remove isInBrowser method and use environment-type.js
-rw-r--r-- | app/scripts/platforms/extension.js | 16 | ||||
-rw-r--r-- | ui/app/unlock.js | 10 |
2 files changed, 4 insertions, 22 deletions
diff --git a/app/scripts/platforms/extension.js b/app/scripts/platforms/extension.js index 60bcce324..f5cc255d1 100644 --- a/app/scripts/platforms/extension.js +++ b/app/scripts/platforms/extension.js @@ -22,22 +22,6 @@ class ExtensionPlatform { this.openWindow({ url: extensionURL }) } - isInBrowser () { - return new Promise((resolve, reject) => { - try { - extension.tabs.getCurrent(currentTab => { - if (currentTab) { - resolve(true) - } else { - resolve(false) - } - }) - } catch (e) { - reject(e) - } - }) - } - getPlatformInfo (cb) { try { extension.runtime.getPlatformInfo((platform) => { 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', |