mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-03 21:33:48 +00:00
Can now search and view tournaments. Can now view team scores, weights and seeds, mats and bout board
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
var app = angular.module("wrestlingdev", ["ngRoute"]).run(function($rootScope) {
|
|
// adds some basic utilities to the $rootScope for debugging purposes
|
|
$rootScope.log = function(thing) {
|
|
console.log(thing);
|
|
};
|
|
|
|
$rootScope.alert = function(thing) {
|
|
alert(thing);
|
|
};
|
|
});
|
|
|