I'm working with an upload script,these lines of codes are not working.Here 'else if' condition doesn't works.It does not showing txt_file.png as a preview of file if a text file uploaded.
if (!file.type.match(/ image.*/)) {
if (file.type.match(/ *.avi/)){
myDropzone.emit("thumbnail", file, "images1/video_icon.png");
} else if (file.type.match(/ *.txt/)){
myDropzone.emit("thumbnail", file, "images1/text_icon.png");
}
....
}
Am i doing anything wrong ?Pls help me.Thank you..