15 lignes
341 o
JavaScript
15 lignes
341 o
JavaScript
'use strict';
|
|
|
|
/* Controllers */
|
|
|
|
var eventManApp = angular.module('eventManApp', []);
|
|
|
|
eventManApp.controller('PersonsListCtrl', ['$scope', '$http',
|
|
function ($scope, $http) {
|
|
$http.get('/persons').success(function(data) {
|
|
$scope.persons = data.persons;
|
|
$scope.orderProp = 'name';
|
|
});
|
|
}]
|
|
);
|
|
|