mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add extra edge compatibility
This commit is contained in:
parent
b36b760338
commit
1b617402ec
@ -46,12 +46,23 @@ function Extension () {
|
|||||||
_this[api] = browser[api]
|
_this[api] = browser[api]
|
||||||
}
|
}
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
_this.api = browser.extension[api]
|
_this.api = browser.extension[api]
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (browser && browser.runtime) {
|
||||||
|
this.runtime = browser.runtime
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (browser && browser.browserAction) {
|
||||||
|
this.browserAction = browser.browserAction
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Extension
|
module.exports = Extension
|
||||||
|
Loading…
x
Reference in New Issue
Block a user