Update upload.js with 200 status for delete

This commit is contained in:
andreimarcu 2015-10-04 02:28:00 -04:00
parent 7f2db43108
commit 335517bf17
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ Dropzone.options.dropzone = {
xhr.open("DELETE", resp.url, true);
xhr.setRequestHeader("X-Delete-Key", resp.delete_key);
xhr.onreadystatechange = function(file) {
if (xhr.status === 404) {
if (xhr.status === 200) {
file.leftElement.innerHTML = 'Deleted <a target="_blank" href="' + resp.url + '">' + resp.url + '</a>';
file.leftElement.className = "deleted";
file.rightRightElement.onclick = null;