Displaying 1 result from an estimated 1 matches for "topercentag".
Did you mean:
topercentage
2006 Sep 17
1
Question about mongrel_upload_progress
...added alert() to the processing code, I never saw anything happen:
update: function(total, current) {
alert("We actually are updating! Total " + total + " / " + current);
if(!this.uploading) return;
var status = current / total;
var statusHTML = status.toPercentage();
$(''results'').innerHTML = statusHTML + "<br /><small>" +
current.toHumanSize() + '' of '' + total.toHumanSize() + " uploaded.</
small>";
this.StatusBar.update(status, statusHTML);
},
I didn''t get...