You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
529 B
19 lines
529 B
//=============================
|
|
//
|
|
// IIFE ENTRY POINT
|
|
//
|
|
//=============================
|
|
(function() {
|
|
Promise.resolve()
|
|
.then(BuoyAnalysisData.populateMapData)
|
|
.then(BuoyAnalysisData.populateSrcFile)
|
|
|
|
.then(BuoyAnalysisSvgMap.drawMap)
|
|
.then(BuoyAnalysisSvgMap.drawStations)
|
|
.then(BuoyAnalysisSvgMap.drawReticle)
|
|
|
|
.then(BuoyAnalysisUiDom.populateMonths)
|
|
.then(BuoyAnalysisUiDom.populateStationDetail)
|
|
|
|
.then(BuoyAnalysisUiBehaviors.attachBehaviors)
|
|
})();
|
|
|