You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
457 B
11 lines
457 B
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'
|
|
}
|
|
}
|
|
|