app.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. (function() {
  2. var app = angular.module('gemStore', []);
  3. app.controller('StoreController', function () {
  4. this.products = gems;
  5. });
  6. app.controller('PanelController', function () {
  7. this.tab = 1;
  8. this.selectTab = function (setTab) {
  9. this.tab = setTab;
  10. };
  11. this.isSelected = function (checkTab) {
  12. return this.tab === checkTab;
  13. }
  14. });
  15. var gems = [{
  16. name: 'Azurite',
  17. description: "Some gems have hidden qualities beyond their luster, beyond their shine... Azurite is one of those gems.",
  18. shine: 8,
  19. price: 110.50,
  20. rarity: 7,
  21. color: '#CCC',
  22. faces: 14,
  23. images: [ ]
  24. }, {
  25. name: 'Bloodstone',
  26. description: "Origin of the Bloodstone is unknown, hence its low value. It has a very high shine and 12 sides, however.",
  27. shine: 9,
  28. price: 22.90,
  29. rarity: 6,
  30. color: '#EEE',
  31. faces: 12,
  32. images: [
  33. "images/gem-01.gif",
  34. "images/gem-03.gif",
  35. "images/gem-04.gif"
  36. ]
  37. }, {
  38. name: 'Zircon',
  39. 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.",
  40. shine: 70,
  41. price: 1100,
  42. rarity: 2,
  43. color: '#000',
  44. faces: 6,
  45. images: [
  46. "images/gem-06.gif",
  47. "images/gem-07.gif",
  48. "images/gem-09.gif"
  49. ]
  50. }];
  51. })();