Archived
1
0

fix param order

This commit is contained in:
Jeff Becker 2017-09-30 08:04:25 -04:00
parent 9cc9609ef6
commit 86896b6c52
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -71,7 +71,7 @@ onready(function() {
elem.innerHTML += ".";
}
};
ajax.open(form.action+"?t=json", form.method);
ajax.open(form.method, form.action+"?t=json");
ajax.send(new FormData(form));
};
var elems = document.getElementsByClassName("postbutton");