mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-31 11:35:45 +00:00
10 lines
286 B
JavaScript
10 lines
286 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);
|
|
};
|
|
}); |