Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Resolutions.js 840B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. var Resolutions = {
  2. "1080": {
  3. width: 1920,
  4. height: 1080,
  5. order: 7
  6. },
  7. "fullhd": {
  8. width: 1920,
  9. height: 1080,
  10. order: 7
  11. },
  12. "720": {
  13. width: 1280,
  14. height: 720,
  15. order: 6
  16. },
  17. "hd": {
  18. width: 1280,
  19. height: 720,
  20. order: 6
  21. },
  22. "960": {
  23. width: 960,
  24. height: 720,
  25. order: 5
  26. },
  27. "640": {
  28. width: 640,
  29. height: 480,
  30. order: 4
  31. },
  32. "vga": {
  33. width: 640,
  34. height: 480,
  35. order: 4
  36. },
  37. "360": {
  38. width: 640,
  39. height: 360,
  40. order: 3
  41. },
  42. "320": {
  43. width: 320,
  44. height: 240,
  45. order: 2
  46. },
  47. "180": {
  48. width: 320,
  49. height: 180,
  50. order: 1
  51. }
  52. };
  53. module.exports = Resolutions;