aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/enums.js
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-08-08 15:00:39 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-08-08 15:00:39 +0800
commitc6b7e460b536a6fcff4e4328b1007f677720b585 (patch)
tree7107eeb7fc05507906e1096811d7920fae5ef0f4 /app/scripts/lib/enums.js
parent2e0916d8ff17c89147005d22e8c100113aaf3360 (diff)
downloadtangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.tar
tangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.tar.gz
tangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.tar.bz2
tangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.tar.lz
tangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.tar.xz
tangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.tar.zst
tangerine-wallet-browser-c6b7e460b536a6fcff4e4328b1007f677720b585.zip
code review changes
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,
}