Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. (function()
  2. {
  3. var app = angular.module('store', []);
  4.  
  5. app.controller('StoreController', function()
  6. {
  7. this.products = gems;
  8. });
  9. app.controller('TabController', function()
  10. {
  11. this.tab = 1;
  12.  
  13. this.setTab = function(setTab)
  14. {
  15. this.tab = setTab;
  16. };
  17. this.isSet = function(checkTab)
  18. {
  19. return this.tab === checkTab;
  20. };
  21. });
  22. var gems = [
  23. {
  24. name: 'Azurite',
  25. description: "Some gems have hidden qualities beyond their luster, beyond their shine... Azurite is one of those gems.",
  26. shine: 8,
  27. price: 110.50,
  28. rarity: 7,
  29. color: '#CCC',
  30. faces: 14,
  31. images: [
  32. "images/gem-02.gif",
  33. "images/gem-05.gif",
  34. "images/gem-09.gif"
  35. ],
  36. reviews: [
  37. {
  38. stars: 5,
  39. body: "I love this gem!",
  40. author: "joe@example.org",
  41. createdOn: 1397490980837
  42. },
  43. {
  44. stars: 1,
  45. body: "This gem sucks.",
  46. author: "tim@example.org",
  47. createdOn: 1397490980837
  48. }]
  49. },
  50. {
  51. name: 'Bloodstone',
  52. description: "Origin of the Bloodstone is unknown, hence its low value. It has a very high shine and 12 sides, however.",
  53. shine: 9,
  54. price: 22.90,
  55. rarity: 6,
  56. color: '#EEE',
  57. faces: 12,
  58. images: [
  59. "images/gem-01.gif",
  60. "images/gem-03.gif",
  61. "images/gem-04.gif",
  62. ],
  63. reviews: [
  64. {
  65. stars: 3,
  66. body: "I think this gem was just OK, could honestly use more shine, IMO.",
  67. author: "JimmyDean@example.org",
  68. createdOn: 1397490980837
  69. },
  70. {
  71. stars: 4,
  72. body: "Any gem with 12 faces is for me!",
  73. author: "gemsRock@example.org",
  74. createdOn: 1397490980837
  75. }]
  76. },
  77. {
  78. name: 'Zircon',
  79. description: "Zircon is our most coveted and sought after gem. You will pay much to be the proud owner of this gorgeous and high shine gem.",
  80. shine: 70,
  81. price: 1100,
  82. rarity: 2,
  83. color: '#000',
  84. faces: 6,
  85. images: [
  86. "images/gem-06.gif",
  87. "images/gem-07.gif",
  88. "images/gem-09.gif"
  89. ],
  90. reviews: [
  91. {
  92. stars: 1,
  93. body: "This gem is WAY too expensive for its rarity value.",
  94. author: "turtleguyy@example.org",
  95. createdOn: 1397490980837
  96. },
  97. {
  98. stars: 1,
  99. body: "BBW: High Shine != High Quality.",
  100. author: "LouisW407@example.org",
  101. createdOn: 1397490980837
  102. },
  103. {
  104. stars: 1,
  105. body: "Don't waste your rubles!",
  106. author: "nat@example.org",
  107. createdOn: 1397490980837
  108. }]
  109. }];
  110. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement