for bootstrap container or simple container where the link "browse your file" is not visible, clicking on container allow user to select file using explorer but that file was not added or recorded by system so I've requested commit a change where $(file).change is triggered and pass $(file).files to pekeUpload.checkfile(file[i]); for further process.
19
after line 48
// when user click on container and browse file for upload
this.obj.change(function(){
var files = this.files; // get files from input $(input[type=file]).files
for (var i = 0; i < files.length; i++) {
pekeUpload.checkFile(files[i]); // send files for further process
}
});
for bootstrap container or simple container where the link "browse your file" is not visible, clicking on container allow user to select file using explorer but that file was not added or recorded by system so I've requested commit a change where $(file).change is triggered and pass $(file).files to pekeUpload.checkfile(file[i]); for further process.
19
after line 48