1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-14 00:49:54 +00:00

Added frontend pages and trying to model wrestlers on frontend

This commit is contained in:
2016-04-26 01:14:15 +00:00
parent 5b9f64b3f9
commit 84578d89da
9 changed files with 79 additions and 40 deletions

View File

@@ -1,5 +1,5 @@
'use strict';
app.controller("tournamentController", function($scope, tournamentsService, $routeParams) {
app.controller("tournamentController", function($scope, tournamentsService, $routeParams, Wrestler) {
$scope.message = "Test message in scope.";
// $scope.tournamentData = "test";
@@ -9,4 +9,7 @@ app.controller("tournamentController", function($scope, tournamentsService, $rou
$scope.tournament = data;
});
$scope.wrestler = Wrestler;
});