Blame view
resources/js/predictor/PredictController.js
188 Bytes
e77200db5 Initial commit |
1 2 3 4 5 6 |
angular.module('footyroom') .controller('PredictController', ['$scope', 'rounds', function ($scope, rounds) { $scope.rounds = rounds.rounds; $scope.matches = rounds.matches; }]); |