Files
jitsi-meet/react/features/base/responsive-ui/constants.js

16 lines
472 B
JavaScript
Raw Normal View History

/**
2017-11-07 08:28:08 -06:00
* The aspect ratio constant which indicates that the width (of whatever the
* aspect ratio constant is used for) is smaller than the height.
*
* @type {Symbol}
*/
export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
/**
2017-11-07 08:28:08 -06:00
* The aspect ratio constant which indicates that the width (of whatever the
* aspect ratio constant is used for) is larger than the height.
*
* @type {Symbol}
*/
export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');