aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/enums.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-08-17 23:56:34 +0800
committerGitHub <noreply@github.com>2018-08-17 23:56:34 +0800
commit9268c4ed548be9d44a47757a36a3f210f8de3787 (patch)
tree63c7260de8abdf4b77d9cc6369b2d3dd4df7bd33 /app/scripts/lib/enums.js
parentef7e638dda63a715c796c210dadbe82430537b6a (diff)
parentd636cc35523f52f630162a1b342b5267b6cd246e (diff)
downloadtangerine-wallet-browser-9268c4ed548be9d44a47757a36a3f210f8de3787.tar.gz
tangerine-wallet-browser-9268c4ed548be9d44a47757a36a3f210f8de3787.tar.zst
tangerine-wallet-browser-9268c4ed548be9d44a47757a36a3f210f8de3787.zip
Merge pull request #5079 from MetaMask/v4.9.3
Version 4.9.3
Diffstat (limited to 'app/scripts/lib/enums.js')
-rw-r--r--app/scripts/lib/enums.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/scripts/lib/enums.js b/app/scripts/lib/enums.js
index 0a3afca47..c6d57a1bc 100644
--- a/app/scripts/lib/enums.js
+++ b/app/scripts/lib/enums.js
@@ -2,8 +2,19 @@ const ENVIRONMENT_TYPE_POPUP = 'popup'
const ENVIRONMENT_TYPE_NOTIFICATION = 'notification'
const ENVIRONMENT_TYPE_FULLSCREEN = 'fullscreen'
+const PLATFORM_BRAVE = 'Brave'
+const PLATFORM_CHROME = 'Chrome'
+const PLATFORM_EDGE = 'Edge'
+const PLATFORM_FIREFOX = 'Firefox'
+const PLATFORM_OPERA = 'Opera'
+
module.exports = {
ENVIRONMENT_TYPE_POPUP,
ENVIRONMENT_TYPE_NOTIFICATION,
ENVIRONMENT_TYPE_FULLSCREEN,
+ PLATFORM_BRAVE,
+ PLATFORM_CHROME,
+ PLATFORM_EDGE,
+ PLATFORM_FIREFOX,
+ PLATFORM_OPERA,
}