Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. /*
  2. * Top level properites are things defined on a per-app basis
  3. * An app can container many pages
  4. * Pages can contain many components
  5. * Components may exist on many pages
  6. *
  7. * */
  8. {
  9. id: 324324,
  10. version: 12312312,
  11. mode : 'social', // This controls the views
  12. title: 'asdfasf',
  13. author: 'foobar guy',
  14. description: 'asdfasfdsafas',
  15. tags: [],
  16. timezone: "-8",
  17. platformOptions: {
  18. facebook : {
  19. tabTitle: 'foobar tab',
  20. fanPageId : '0',
  21. isFanPageId : 324234,
  22. isNotFanPAgeId : 234234234,
  23. promptForAppPermissions: true
  24. }
  25. }
  26. analytics: {
  27. type: 'google',
  28. code: 'foobar',
  29. },
  30. navigation: {
  31. type: 'foo',
  32. position: {}
  33. },
  34. style: {
  35. theme: '',
  36. font: {},
  37. link: {},
  38. background:{},
  39. border:{}
  40. },
  41. components:[
  42. {
  43. type: 'badge',
  44. unid: '1',
  45. prop1: 'xxx',
  46. prop2: 'xxx',
  47. sharing: {}
  48. },
  49. {
  50. type: 'ecard',
  51. unid: '2',
  52. prop1: 'xxx',
  53. prop2: 'xxx',
  54. sharing: {}
  55. },
  56. {
  57. type: 'html',
  58. unid: '3',
  59. prop1: 'xxx',
  60. prop2: 'xxx'
  61. },
  62. {
  63. type: 'gifting',
  64. unid: '4',
  65. prop1: 'xxx',
  66. prop2: 'xxx',
  67. sharing: {}
  68. },
  69. {
  70. type: 'image',
  71. unid: '5',
  72. prop1: 'xxx',
  73. prop2: 'xxx'
  74. }
  75. ],
  76. pages:[
  77. {
  78. id: 234234,
  79. label: 'This is my page 1',
  80. excludeFromNavigation: false,
  81. components: [1,5,6]
  82. },
  83. {
  84. id: 234234,
  85. label: 'This is my page 1',
  86. excludeFromNavigation: true,
  87. components: [2,5,7]
  88. },
  89. {
  90. id: 234234,
  91. label: 'This is my page 1',
  92. excludeFromNavigation: false,
  93. components: [3,4,8]
  94. }
  95. ]
  96. }
Add Comment
Please, Sign In to add comment