|
|
|
@ -74,22 +74,15 @@ document.addEventListener('DOMContentLoaded', function() {
@@ -74,22 +74,15 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
|
|
row.appendChild(url); |
|
|
|
|
|
|
|
|
|
var link = document.createElement('a'); |
|
|
|
|
var response = JSON.parse(xhr.responseText); |
|
|
|
|
if (respStatus === 200) { |
|
|
|
|
var response = JSON.parse(xhr.responseText); |
|
|
|
|
if (response.success) { |
|
|
|
|
link.textContent = response.files[0].url.replace(/.*?:\/\//g, ""); |
|
|
|
|
link.href = response.files[0].url; |
|
|
|
|
url.appendChild(link); |
|
|
|
|
} else { |
|
|
|
|
bar.innerHTML = 'Error: ' + response.reason; |
|
|
|
|
} |
|
|
|
|
} else if (respStatus === 413) { |
|
|
|
|
link.textContent = 'File Too big!'; |
|
|
|
|
url.appendChild(link); |
|
|
|
|
link.textContent = response.files[0].url.replace(/.*?:\/\//g, ""); |
|
|
|
|
link.href = response.files[0].url; |
|
|
|
|
} else { |
|
|
|
|
link.textContent = 'Server error!'; |
|
|
|
|
url.appendChild(link); |
|
|
|
|
link.textContent = response.description || 'Server error!'; |
|
|
|
|
bar.innerHTML = 'Error: ' + response.description; |
|
|
|
|
} |
|
|
|
|
url.appendChild(link); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function uploadFile(file, row) { |
|
|
|
|