mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* fix(video-select): remove video preview from device selection and fix video switch on android browsers * simplify if statement * add for all mobile devices the stop stream * move mobile check to middleware * code review
22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
import Platform from '../react/Platform';
|
|
|
|
/**
|
|
* Returns whether or not the current environment is a mobile device.
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
export function isMobileBrowser() {
|
|
return Platform.OS === 'android' || Platform.OS === 'ios';
|
|
}
|
|
|
|
|
|
/**
|
|
* Returns whether or not the current environment is an ios mobile device.
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
export function isIosMobileBrowser() {
|
|
return Platform.OS === 'ios';
|
|
}
|
|
|