remove a console.log call

This commit is contained in:
mappu 2017-10-08 19:07:06 +13:00
parent 582854878b
commit f543347b1c
1 changed files with 0 additions and 1 deletions

View File

@ -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);