Advertisement
Advertisement
| 08.27.2008 at 12:09PM PDT, ID: 23683168 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
var uploadCounter = 0;
var dataArr;
function upload() {
uploader.upload(idToUpload, '/authorized/image-upload?sid=' + session_id, 'POST', img_params);
}
function onUploadComplete(event) {
if (uploadCounter < dataArr.length - 1) {
uploadCounter++;
upload();
}
}
|