blob: 73a812d5ff11c10e043cd486d7c8df8f292625aa (
plain) (
blame)
1
2
3
4
5
6
7
8
|
module.exports = function isPopupOrNotification () {
const url = window.location.href
if (url.match(/popup.html$/) || url.match(/home.html$/)) {
return 'popup'
} else {
return 'notification'
}
}
|