Patch to API Tools Website
Some code was out of order, fixed now.
This commit is contained in:
parent
d30d43b2ee
commit
dc06bc35df
|
@ -122,10 +122,6 @@ function sendPayload() {
|
|||
var method;
|
||||
var path = "/api/";
|
||||
|
||||
if (endpoint !== "generate") {
|
||||
xhr.setRequestHeader("X-Api-Key", apiField.value);
|
||||
}
|
||||
|
||||
switch (endpoint) {
|
||||
case "generate":
|
||||
method = "GET";
|
||||
|
@ -152,6 +148,11 @@ function sendPayload() {
|
|||
}
|
||||
|
||||
xhr.open(method, path);
|
||||
|
||||
if (endpoint !== "generate") {
|
||||
xhr.setRequestHeader("X-Api-Key", apiField.value);
|
||||
}
|
||||
|
||||
xhr.send();
|
||||
|
||||
xhr.onload = function() {
|
||||
|
|
Loading…
Reference in New Issue