controllers.js 341 B

123456789101112131415
  1. 'use strict';
  2. /* Controllers */
  3. var eventManApp = angular.module('eventManApp', []);
  4. eventManApp.controller('PersonsListCtrl', ['$scope', '$http',
  5. function ($scope, $http) {
  6. $http.get('/persons').success(function(data) {
  7. $scope.persons = data.persons;
  8. $scope.orderProp = 'name';
  9. });
  10. }]
  11. );