diff --git a/lib/main.js b/lib/main.js index e43ada5..e54b0d5 100644 --- a/lib/main.js +++ b/lib/main.js @@ -123,17 +123,13 @@ function (config, moment, chroma, Router, Map, Sidebar, Tabs, Container, Meshsta ] Promise.all(urls.map(getJSON)) - .then(function (d) { - createGUI() - return d - }) .then(handleData) .then(function (d) { + createGUI() dataTargets.forEach(function (t) { t.setData(d) }) + router.start() }) - .then(function () { router.start() }) - } })