1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/frontend/app/js/controllers/tournament-controller.js
jcwimer 5b9f64b3f9 Created basic viewing pages in angular
Can now search and view tournaments. Can now view team scores, weights and seeds, mats and bout board
2016-04-12 21:11:18 +00:00

12 lines
390 B
JavaScript

'use strict';
app.controller("tournamentController", function($scope, tournamentsService, $routeParams) {
$scope.message = "Test message in scope.";
// $scope.tournamentData = "test";
tournamentsService.tournamentDetails($routeParams.id).then(function(data) {
//this will execute when the
//AJAX call completes.
$scope.tournament = data;
});
});