mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
12 lines
457 B
JavaScript
12 lines
457 B
JavaScript
module.exports = function isPopupOrNotification () {
|
|
const url = window.location.href
|
|
// if (url.match(/popup.html$/) || url.match(/home.html$/)) {
|
|
// Below regexes needed for feature toggles (e.g. see line ~340 in ui/app/app.js)
|
|
// Revert below regexes to above commented out regexes before merge to master
|
|
if (url.match(/popup.html(?:\?.+)*$/) || url.match(/home.html(?:\?.+)*$/)) {
|
|
return 'popup'
|
|
} else {
|
|
return 'notification'
|
|
}
|
|
}
|