mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-25 02:57:22 +00:00
Fix uploader
This commit is contained in:
parent
dc93222579
commit
1c9ff6421d
@ -130,22 +130,19 @@
|
|||||||
this.$modalFooter.show();
|
this.$modalFooter.show();
|
||||||
|
|
||||||
var contentType = xhr.getResponseHeader("Content-Type");
|
var contentType = xhr.getResponseHeader("Content-Type");
|
||||||
// Replace the contents of the form, with the returned html
|
|
||||||
if (xhr.status === 422) {
|
|
||||||
var newHtml = $.parseHTML(xhr.responseText);
|
|
||||||
this.replaceForm(newHtml);
|
|
||||||
this.$modal.modal("hide");
|
|
||||||
}
|
|
||||||
// Write the error response to the document.
|
// Write the error response to the document.
|
||||||
else{
|
if (contentType || xhr.status === 422) {
|
||||||
// Handle no response error
|
var responseText = xhr.responseText;
|
||||||
if (contentType) {
|
if (contentType.indexOf("text/plain") !== -1) {
|
||||||
var responseText = xhr.responseText;
|
responseText = "<pre>" + responseText + "</pre>";
|
||||||
if (contentType.indexOf("text/plain") !== -1) {
|
|
||||||
responseText = "<pre>" + responseText + "</pre>";
|
|
||||||
}
|
|
||||||
document.write(responseText);
|
document.write(responseText);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
this.$modalBar.text(responseText);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.$modalBar.text(this.options.modalTitleFailed);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user