Clean error message on successful response

Signed-off-by: Alejandro Villarreal <alex@alexvy86.com>
This commit is contained in:
Alex Villarreal 2018-06-11 12:56:27 -05:00 committed by Alejandro Villarreal
parent 0651f1bcd4
commit e422f4154f

View file

@ -329,6 +329,7 @@ setHeader();
setTimeout(function(){window.location.reload(1);}, 10000);
$("#bpOutput").removeClass("add");
$("#bpOutput").addClass("success");
$("#bpOutput").html("");
} else {
$("#bpOutput").removeClass("add");
$("#bpOutput").addClass("error");
@ -338,6 +339,7 @@ setHeader();
error: function(jqXHR, exception) {
$("#bpOutput").removeClass("add");
$("#bpOutput").addClass("exception");
$("#bpOutput").html("");
}
});
}