23263bec7
030bdec27
61b4b1f94
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' } }