mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Open full-screen UI on install
This commit is contained in:
parent
3e85d580f9
commit
a9d3c1a87d
@ -474,10 +474,9 @@ function openPopup () {
|
||||
)
|
||||
}
|
||||
|
||||
// On first install, open a window to MetaMask website to how-it-works.
|
||||
extension.runtime.onInstalled.addListener(function (details) {
|
||||
if ((details.reason === 'install') && (!METAMASK_DEBUG)) {
|
||||
extension.tabs.create({url: 'https://metamask.io/#how-it-works'})
|
||||
// On first install, open a new tab with MetaMask
|
||||
extension.runtime.onInstalled.addListener(({reason}) => {
|
||||
if ((reason === 'install') && (!METAMASK_DEBUG)) {
|
||||
platform.openExtensionInBrowser()
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user