mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
11 lines
293 B
JavaScript
11 lines
293 B
JavaScript
'use strict';
|
|
|
|
app.controller("myTournamentsController", function($scope, tournamentsService, $rootScope) {
|
|
|
|
tournamentsService.getMyTournaments().then(function(data) {
|
|
//this will execute when the
|
|
//AJAX call completes.
|
|
$scope.allTournaments = data;
|
|
});
|
|
|
|
}); |