mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
var app = angular.module("wrestlingdev", ["ngRoute","Devise"]).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);
|
|
};
|
|
});
|
|
|