#19240174 IE에서 업로드가 안되는 버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7801 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-11-05 05:20:16 +00:00
parent 0c5e608515
commit 6e23e045b0
2 changed files with 5 additions and 4 deletions

View file

@ -466,7 +466,7 @@ runtimes.flash = {
var old_length = uploader.files.length;
$.each(files, function() {
uploader.files.push(new File(this, this.fileSize))
uploader.files.push(new File(this, this.size))
});
uploader.cast('ON_SELECT', [uploader.files, old_length]);
@ -564,9 +564,6 @@ runtimes.flash = {
(function uploadNext(){
var file = files.shift();
uploader.flash.startUpload(file.object.index);
uploader.cast('ON_STARTONE', [file]);
function nextOrFinish() {
if (files.length) {
@ -596,6 +593,10 @@ runtimes.flash = {
file.status = 'FAILED';
nextOrFinish();
};
uploader.flash.startUpload(file.object.index);
uploader.cast('ON_STARTONE', [file]);
})();
},
stop : function(uploader, settings) {