Advertisement
Guest User

Untitled

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