contacts/js/components/groupList/groupList_controller.js

10 lines
208 B
JavaScript
Raw Normal View History

2016-02-12 12:48:46 +00:00
app.controller('grouplistCtrl', ['$scope', 'ContactService', function($scope, ContactService) {
$scope.groups = [];
ContactService.getGroups().then(function(groups) {
$scope.groups = groups;
});
}]);