mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 16:19:58 +09:00
#19240174 IE에서 업로드가 안되는 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7801 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0c5e608515
commit
6e23e045b0
2 changed files with 5 additions and 4 deletions
|
|
@ -466,7 +466,7 @@ runtimes.flash = {
|
||||||
var old_length = uploader.files.length;
|
var old_length = uploader.files.length;
|
||||||
|
|
||||||
$.each(files, function() {
|
$.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]);
|
uploader.cast('ON_SELECT', [uploader.files, old_length]);
|
||||||
|
|
@ -564,9 +564,6 @@ runtimes.flash = {
|
||||||
|
|
||||||
(function uploadNext(){
|
(function uploadNext(){
|
||||||
var file = files.shift();
|
var file = files.shift();
|
||||||
uploader.flash.startUpload(file.object.index);
|
|
||||||
|
|
||||||
uploader.cast('ON_STARTONE', [file]);
|
|
||||||
|
|
||||||
function nextOrFinish() {
|
function nextOrFinish() {
|
||||||
if (files.length) {
|
if (files.length) {
|
||||||
|
|
@ -596,6 +593,10 @@ runtimes.flash = {
|
||||||
file.status = 'FAILED';
|
file.status = 'FAILED';
|
||||||
nextOrFinish();
|
nextOrFinish();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
uploader.flash.startUpload(file.object.index);
|
||||||
|
|
||||||
|
uploader.cast('ON_STARTONE', [file]);
|
||||||
})();
|
})();
|
||||||
},
|
},
|
||||||
stop : function(uploader, settings) {
|
stop : function(uploader, settings) {
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue