reset values
This commit is contained in:
parent
493565257e
commit
93b4558b27
@ -90,6 +90,7 @@ onready(function() {
|
|||||||
}
|
}
|
||||||
if(ajax.status == 201) {
|
if(ajax.status == 201) {
|
||||||
// success
|
// success
|
||||||
|
form.reset();
|
||||||
cb(null, j);
|
cb(null, j);
|
||||||
} else if (ajax.status == 200) {
|
} else if (ajax.status == 200) {
|
||||||
cb(err, j);
|
cb(err, j);
|
||||||
@ -116,6 +117,12 @@ onready(function() {
|
|||||||
e.disabled = true;
|
e.disabled = true;
|
||||||
e.innerHTML = "posting ";
|
e.innerHTML = "posting ";
|
||||||
submitPost(document.forms[0], e, function(err, j) {
|
submitPost(document.forms[0], e, function(err, j) {
|
||||||
|
if(err) {
|
||||||
|
var captcha = document.getElementById("captcha_solution");
|
||||||
|
if(captcha) {
|
||||||
|
captcha.value = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
var msg = err || "posted";
|
var msg = err || "posted";
|
||||||
console.log(msg, j.url);
|
console.log(msg, j.url);
|
||||||
e.innerHTML = msg;
|
e.innerHTML = msg;
|
||||||
|
Reference in New Issue
Block a user