mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-16 21:37:49 +00:00
* Adds a dropdown indicator which displays the status of the internet connection. * It uses the same data as `https://network.callstats.io`. * The algorithm for the strings displayed to the user is also the one used on `network.callstas.io`.
9 lines
130 B
JavaScript
9 lines
130 B
JavaScript
// @flow
|
|
|
|
export const CONNECTION_TYPE = {
|
|
GOOD: 'good',
|
|
NON_OPTIMAL: 'nonOptimal',
|
|
NONE: 'none',
|
|
POOR: 'poor'
|
|
};
|