Hi Guys!
I'm new into this swfUpload and I'm trying to disable the fadeOut effect of the div when the transfer has been completed. Where can I change this?
Thank you,
Hi Guys!
I'm new into this swfUpload and I'm trying to disable the fadeOut effect of the div when the transfer has been completed. Where can I change this?
Thank you,
May 3, 2010 - 5:55am
May add that I'm working over the Simple Uploader Demo
May 5, 2010 - 1:26am
In fileprogress.js comment out oSelf.disappear();
FileProgress.prototype.setComplete = function() {
this.fileProgressElement.className = "progressContainer blue";
this.fileProgressElement.childNodes[3].className = "progressBarComplete";
this.fileProgressElement.childNodes[3].style.width = "";
//var oSelf = this;
// this.setTimer(setTimeout(function () {
// oSelf.disappear();
// }, 10000));
};
May 17, 2010 - 2:07pm
Thank you very much!