app.js 331 B

123456789101112131415
  1. (function () {
  2. var app = angular.module('store', []);
  3. app.controller('StoreController', function () {
  4. this.product = gem;
  5. });
  6. var gem = {
  7. name: "Dodecahedron",
  8. price: 2.95,
  9. description: 'Some gems have hidden qualities beyond their luster, beyond their shine... Dodeca is one of those gems.'
  10. };
  11. })();