modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

browsers.js 492B

123456789101112131415161718192021
  1. // TODO: Maybe fix the values to 'Chrome', 'Internet Explorer', etc. Currently
  2. // this values needs to be as they are becuse they are going to analytics,
  3. // callstats, etc.
  4. export const CHROME = 'chrome';
  5. export const OPERA = 'opera';
  6. export const FIREFOX = 'firefox';
  7. export const INTERNET_EXPLORER = 'iexplorer';
  8. export const EDGE = 'edge';
  9. export const SAFARI = 'safari';
  10. export const NWJS = 'nwjs';
  11. export const ELECTRON = 'electron';
  12. export const REACT_NATIVE = 'react-native';