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.

Resolutions.js 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright @ 2015 Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. var Resolutions = {
  17. "1080": {
  18. width: 1920,
  19. height: 1080,
  20. order: 7
  21. },
  22. "fullhd": {
  23. width: 1920,
  24. height: 1080,
  25. order: 7
  26. },
  27. "720": {
  28. width: 1280,
  29. height: 720,
  30. order: 6
  31. },
  32. "hd": {
  33. width: 1280,
  34. height: 720,
  35. order: 6
  36. },
  37. "960": {
  38. width: 960,
  39. height: 720,
  40. order: 5
  41. },
  42. "640": {
  43. width: 640,
  44. height: 480,
  45. order: 4
  46. },
  47. "vga": {
  48. width: 640,
  49. height: 480,
  50. order: 4
  51. },
  52. "360": {
  53. width: 640,
  54. height: 360,
  55. order: 3
  56. },
  57. "320": {
  58. width: 320,
  59. height: 240,
  60. order: 2
  61. },
  62. "180": {
  63. width: 320,
  64. height: 180,
  65. order: 1
  66. }
  67. };
  68. module.exports = Resolutions;