Advertisement
Guest User

app

a guest
Mar 3rd, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1.  
  2.  
  3. var app = angular.module('contactApp', []);
  4.  
  5. app.controller('homeController', function($scope){
  6.     $scope.message = 'Liste : ';
  7.     $scope.contacts=[
  8.                     {
  9.                         "picture": "http://lorempixel.com/90/90/",
  10.                         "age": 65,
  11.                         "firstname": "ethel",
  12.                         "name": "logan",
  13.                         "email": "ethellogan@tsunamia.com",
  14.                         "phone": "+1 (857) 470-3091"
  15.                     },
  16.                     {
  17.                         "picture": "http://lorempixel.com/90/90/",
  18.                         "age": 38,
  19.                         "firstname": "carol",
  20.                         "name": "vasquez",
  21.                         "email": "carolvasquez@lexicondo.com",
  22.                         "phone": "+1 (853) 507-3026"
  23.                     },
  24.                     {
  25.                         "picture": "http://lorempixel.com/90/90/",
  26.                         "age": 43,
  27.                         "firstname": "chan",
  28.                         "name": "bowman",
  29.                         "email": "chanbowman@vicon.com",
  30.                         "phone": "+1 (994) 412-2204"
  31.                     }
  32.                 ];
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement