Fix inconsistent data loading.

This commit is contained in:
kor 2018-08-12 03:43:33 +12:00
parent 7e231e4f95
commit 1a7f864492

View File

@ -11,18 +11,11 @@ function Main()
this.install = function() this.install = function()
{ {
var client = new XMLHttpRequest(); var oReq = new XMLHttpRequest();
client.open('GET', FILELOCATION); oReq.open('GET', FILELOCATION);
client.overrideMimeType("text/plain"); oReq.overrideMimeType("text/plain");
client.onreadystatechange = function(req, res) oReq.addEventListener("load", function() { parent.setup(this.responseText); } );
{ oReq.send();
if (client.responseText.trim() != '')
{
client.onreadystatechange = null;
parent.setup(client.responseText);
}
}
client.send();
} }
this.setup = function(data) this.setup = function(data)