Hi,
in the demo
http://code.google.com/p/closure-library/source/browse/trunk/closure/goog/demos/
filedrophandler.html
revision r1341
in line 50 it says:
var fileName = file.name || file.fileName;
The variable "file" is never created though. I guess, you would want to write:
var fileName = files[i].name || files[i].fileName;
Best regards
Sven
Original issue reported on code.google.com by sven.bu...@gmail.com on 17 Oct 2011 at 9:11
Original issue reported on code.google.com by
sven.bu...@gmail.com
on 17 Oct 2011 at 9:11