aboutsummaryrefslogtreecommitdiff
path: root/js/app.js
blob: 0810162420597b693821ad685a541fa3cfc43c49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Nothing really here except the app object. Filters, and directives are 
//include with the controllers that use them. If we need to add any that
//are used by multiple controllers then we'll define them here.
var redirectorApp = angular.module('redirectorApp', []);

//To make the private stuff in Firefox work properly
window.addEventListener('DOMContentLoaded', function() {
	document.body.classList.remove('private');
});