remove a console.log call
This commit is contained in:
parent
582854878b
commit
f543347b1c
@ -167,7 +167,6 @@ var contented = (function ($, currentScriptPath) {
|
||||
xhr.upload.addEventListener(
|
||||
'progress',
|
||||
function(ev) {
|
||||
console.log([ev.lengthComputable, ev.loaded, ev.total]);
|
||||
if (ev.lengthComputable) {
|
||||
setProgressCaption("Uploading (" + formatBytes(ev.loaded) + " / " + formatBytes(ev.total) + ")...");
|
||||
setProgressPercentage(ev.total == 0 ? 0 : ev.loaded / ev.total);
|
||||
|
Loading…
Reference in New Issue
Block a user