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.

constants.ts 806B

12345678910111213141516171819202122232425262728
  1. /**
  2. * The aspect ratio constant which indicates that the width (of whatever the
  3. * aspect ratio constant is used for) is smaller than the height.
  4. *
  5. * @type {Symbol}
  6. */
  7. export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
  8. /**
  9. * The aspect ratio constant which indicates that the width (of whatever the
  10. * aspect ratio constant is used for) is larger than the height.
  11. *
  12. * @type {Symbol}
  13. */
  14. export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');
  15. /**
  16. * Smallest supported mobile width.
  17. */
  18. export const SMALL_MOBILE_WIDTH = '320';
  19. /**
  20. * The width for desktop that we start hiding elements from the UI (video quality label, filmstrip, etc).
  21. * This should match the value for $verySmallScreen in _variables.scss.
  22. *
  23. * @type {number}
  24. */
  25. export const SMALL_DESKTOP_WIDTH = 500;