move _callback() call

This commit is contained in:
roblevesque 2016-07-07 12:17:27 -04:00 committed by GitHub
parent d7596cc3fa
commit 42311a0275

View File

@ -23,12 +23,13 @@ function loadData(_callback) {
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
jsonEmpire = JSON.parse(xmlhttp.responseText);
_callback();
}
};
xmlhttp.open("GET", url, true);
xmlhttp.send();
_callback();
}
function init() {
scene = new THREE.Scene();