Style optimization, more content

This commit is contained in:
Andre Beging
2020-03-01 14:37:34 +01:00
parent dfa9c32cc1
commit f56a46eb52
10 changed files with 97 additions and 37 deletions

View File

@@ -29,7 +29,7 @@ window.onload = function() {
// Build url
let queryString = Object.keys(formParameter).map((k : any) => encodeURIComponent(k) + "=" + encodeURIComponent(formParameter[k])).join("&");
let getUrl = targetUrl + "?" + queryString;
// Perform get request
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", getUrl);