Skip to content

Instantly share code, notes, and snippets.

@wcadap
Created December 31, 2014 08:06
Show Gist options
  • Save wcadap/f7fd1bd9dfa2cee10a4c to your computer and use it in GitHub Desktop.
Save wcadap/f7fd1bd9dfa2cee10a4c to your computer and use it in GitHub Desktop.
contactApp.controller('contactController',
['$scope',
function categoryController($scope) {
$scope.contacts =[
{
firstName: 'John', lastName: 'Parson', email: '[email protected]', mobile: '233-900-2933'
},
{
firstName: 'Joe', lastName: 'Paris', email: '[email protected]', mobile: '233-900-2933'
},
{
firstName: 'Donna', lastName: 'Lim', email: '[email protected]', mobile: '552-221-2222'
}
];
$scope.contact = {};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment