-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.js
37 lines (32 loc) · 1.69 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//node style error first
// if ('serviceWorker' in navigator) {
// console.log('Common: SW supported, going to register');
// //need hash in here
// navigator.serviceWorker.register('/sw.bundle.js', {scope:'./'}).then(function(registration) {
// // Registration was successful
// console.log('Common: SW register worked: ', registration);
// }).catch(function(err) {
// // registration failed :(
// console.log('Common: SW register failed with err: ', err);
// });
// } else {
// //no SW :(
// //upgrade your browser!
// console.log('Common: SW not supported');
// }
// =============== base_scripts
window.eventManager = require('./base_scripts/eventManager');
window.api = require('./components/_api/_api.js'); //sits in components as it has an associated dom component (in the footer)
window.urlParameter = require('./base_scripts/urlParameterHandler.js');
window.$ = require('jquery');
window.threeOneOne = {}; //container for all the 311 app modules
api.init();
// =============== component scripts (todo: figure out how to not buundle these in the big bundle)
require('./components/_header/_header.js').init();
window.threeOneOne.searchForm = require('./components/search-form/_search-form.js');
window.threeOneOne.map = require('./components/map/_map.js');
window.threeOneOne.burndown = require('./components/burn-down/_burn-down.js');
window.threeOneOne.totalRequestsByDept = require('./components/total-requests-by-dept/_total-requests-by-dept.js');
window.threeOneOne.totalRequestsOverTime = require('./components/total-requests-over-time/_total-requests-over-time.js');
$('.js-main').addClass('js-loaded');
$('.js-header').addClass('js-loaded');