mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-06 22:44:14 +00:00
Trying to get routes working but they are not working at the moment. Also moved the tournaments search and table to its own page
This commit is contained in:
@@ -1 +1,10 @@
|
||||
var app = angular.module("wrestlingdev", []);
|
||||
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);
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user