Advertisement
Guest User

Untitled

a guest
Jun 14th, 2013
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.97 KB | None | 0 0
  1. var things = [{
  2. "slug": "beds",
  3. "title": "Beds",
  4. "items": [{
  5. "title": "Full/Double Mattress",
  6. "slug": "fulldouble-mattress",
  7. "images": true,
  8. "shorthand": "FMat",
  9. "price": 20
  10. }, {
  11. "title": "Ikea Mattress",
  12. "slug": "ikea-mattress",
  13. "images": false,
  14. "shorthand": "IkeaMat",
  15. "price": 20
  16. }, {
  17. "title": "King Mattress",
  18. "slug": "king-mattress",
  19. "images": false,
  20. "shorthand": "KMat",
  21. "price": 35
  22. }, {
  23. "title": "Queen Mattress",
  24. "slug": "queen-mattress",
  25. "images": false,
  26. "shorthand": "QMat",
  27. "price": 30
  28. }, {
  29. "title": "Twin/Single Mattress",
  30. "slug": "twinsingle-mattress",
  31. "images": false,
  32. "shorthand": "TwinMat",
  33. "price": 15
  34. }]
  35. }, {
  36. "slug": "bagssuitcases",
  37. "title": "Bags/Suitcases",
  38. "items": [{
  39. "title": "Small Suitcase",
  40. "slug": "small-suitcase-carry-on",
  41. "images": false,
  42. "shorthand": "SmSuitcs",
  43. "price": 5
  44. }, {
  45. "title": "Large Suitcase",
  46. "slug": "large-suitcase-larger-than-2ft-x-2ft-x-2ft",
  47. "images": false,
  48. "shorthand": "LgSuitcs",
  49. "price": 10
  50. }, {
  51. "title": "Garbage Bag",
  52. "slug": "garbage-bag-soft-items-only-please",
  53. "images": true,
  54. "shorthand": "GrbgBg",
  55. "price": 5
  56. }]
  57. }, {
  58. "slug": "chairs",
  59. "title": "Chairs",
  60. "items": [{
  61. "title": "Recliner",
  62. "slug": "recliner",
  63. "images": false,
  64. "shorthand": "Rclnr",
  65. "price": 15
  66. }, {
  67. "title": "Dining Chair",
  68. "slug": "dining-chair",
  69. "images": false,
  70. "shorthand": "DinChr",
  71. "price": 5
  72. }]
  73. }, {
  74. "slug": "boxesbins",
  75. "title": "Boxes/Bins",
  76. "items": [{
  77. "title": "Small Box",
  78. "slug": "small-box",
  79. "images": false,
  80. "shorthand": "SmBx",
  81. "price": 5
  82. }, {
  83. "title": "Medium Box",
  84. "slug": "medium-box",
  85. "images": false,
  86. "shorthand": "MedBx",
  87. "price": 5
  88. }, {
  89. "title": "Large Box",
  90. "slug": "large-box-18x18x18",
  91. "images": false,
  92. "shorthand": "LgBx",
  93. "price": 10
  94. }, {
  95. "title": "Book Box",
  96. "slug": "book-box",
  97. "images": false,
  98. "shorthand": "BookBx",
  99. "price": 5
  100. }]
  101. }, {
  102. "slug": "desks",
  103. "title": "Desks",
  104. "items": [{
  105. "title": "Large Desk",
  106. "slug": "large-desk",
  107. "images": false,
  108. "shorthand": "LgDsk",
  109. "price": 50
  110. }, {
  111. "title": "Medium Desk",
  112. "slug": "medium-desk",
  113. "images": false,
  114. "shorthand": "MedDsk",
  115. "price": 40
  116. }, {
  117. "title": "Small Desk",
  118. "slug": "small-desk",
  119. "images": false,
  120. "shorthand": "SmDsk",
  121. "price": 25
  122. }]
  123. }, {
  124. "slug": "dressers",
  125. "title": "Dressers",
  126. "items": [{
  127. "title": "Small Dresser",
  128. "slug": "small-dresser",
  129. "images": false,
  130. "shorthand": "SmDrsr",
  131. "price": 30
  132. }, {
  133. "title": "Medium Dresser",
  134. "slug": "medium-dresser",
  135. "images": false,
  136. "shorthand": "MedDrsr",
  137. "price": 40
  138. }, {
  139. "title": "Large Dresser",
  140. "slug": "large-dresser",
  141. "images": false,
  142. "shorthand": "LgDrsr",
  143. "price": 50
  144. }]
  145. }, {
  146. "slug": "sofas",
  147. "title": "Sofas",
  148. "items": [{
  149. "title": "Standard Sofa",
  150. "slug": "standard-sofa",
  151. "images": false,
  152. "shorthand": "Sofa",
  153. "price": 60
  154. }, {
  155. "title": "Love Seat",
  156. "slug": "love-seat",
  157. "images": false,
  158. "shorthand": "LvSeat",
  159. "price": 40
  160. }]
  161. }, {
  162. "slug": "tables",
  163. "title": "Tables",
  164. "items": [{
  165. "title": "Coffee Table",
  166. "slug": "coffee-table",
  167. "images": false,
  168. "shorthand": "CffTbl",
  169. "price": 15
  170. }, {
  171. "title": "Kitchen Table",
  172. "slug": "kitchen-table",
  173. "images": false,
  174. "shorthand": "KitchTbl",
  175. "price": 20
  176. }]
  177. }, ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement