aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/environment-type.js
blob: 7966926eba8139e019a963fdecf16706cb79e73a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = function environmentType () {
  const url = window.location.href
  if (url.match(/popup.html$/)) {
    return 'popup'
  } else if (url.match(/home.html$/)) {
    return 'responsive'
  } else {
    return 'notification'
  }
}