Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'use strict';
  2.  
  3. /**
  4.  * @ngdoc function
  5.  * @name angularApp.controller:MainCtrl
  6.  * @description
  7.  * # MainCtrl
  8.  * Controller of the angularApp
  9.  */
  10. angular.module('angularApp')
  11.   .controller('MainCtrl', function ($scope) {
  12.  
  13.     $scope.results = [{
  14.       image: 'People5.jpg',
  15.       details: [{
  16.         name: 'David Bolton',
  17.         location: 'Sydney, Australia',
  18.         institutions: [
  19.           "USYD - Aerospace Engineering",
  20.           "Bright Lighting Co"
  21.         ],
  22.       }],
  23.       follows: [
  24.         "Follow 1",
  25.         "Follow 2",
  26.         "Follow 3",
  27.         "Follow 4"
  28.       ],
  29.       interests: [
  30.         "Civil Finite Element",
  31.         "Space Engineering",
  32.         "3D Printing",
  33.         "Wind Engineering"
  34.       ],
  35.       projects: [
  36.         "FlowerSat1, Development of a CO2 sensing CubeSat",
  37.         "Re-Usable MR16 LED Downlights",
  38.         "Nano Folding Table",
  39.         "Bushfire sensings altitude controlled Balloon"
  40.       ],
  41.     }, {
  42.       image: 'People4.jpg',
  43.       details: [{
  44.         name: 'Michael Atkins',
  45.         location: 'Canberra, Australia',
  46.         institutions: [
  47.           "USYD - Aerospace Engineering",
  48.           "Dim Lighting Co"
  49.         ],
  50.       }],
  51.       follows: [
  52.         "Follow 1",
  53.         "Follow 2",
  54.         "Follow 3",
  55.         "Follow 4"
  56.       ],
  57.       interests: [
  58.         "Civil Finite Element",
  59.         "Space Engineering",
  60.         "3D Printing",
  61.         "Wind Engineering"
  62.       ],
  63.       projects: [
  64.         "FlowerSat1, Development of a CO2 sensing CubeSat",
  65.         "Re-Usable MR16 LED Downlights",
  66.         "Ecotech Folding Coffee Table",
  67.         "Bushfire sensings altitude controlled Balloon"
  68.       ],
  69.     }];
  70.   });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement