in src/main/resources/static/Scripts/todoListCtrl.js [42:49]
$scope.populate = function () {
todoListSvc.getItems().success(function (results) {
$scope.todoList = results;
}).error(function (err) {
$scope.error = err;
$scope.loadingMessage = '';
})
};