I don\'t see an option in the plupload API docs on restricting the number of files uploaded, to any number, even 1.
Doc fail? or Feature fail? If it doesn\'t exist I\'ll
FilesAdded: function(up, files) { up.files.splice(0,up.files.length-1); }, multi_selection: false,
use up.files, just files. files will always contain single item what we select from file browser. up.files is the actual list which we need to shrink to last selected file.
up.files
files