I can't figure out how to modify the jQuery Blueimp fileupload plugin jquery.fileupload-ui.js such that the delete button just deletes the files without having to check the checkbox first.
Might someone help me figure out how to do this?
here's the jquery.fileupload-ui.js code which appears to need some kind of modification:
fileUploadButtonBar.find('.delete')
.bind('click.' + ns, function (e) {
e.preventDefault();
filesList.find('.delete input:checked')
.siblings('button').click();
fileUploadButtonBar.find('.toggle')
.prop('checked', false);
});
fileUploadButtonBar.find('.toggle')
.bind('change.' + ns, function (e) {
filesList.find('.delete input').prop(
'checked',
$(this).is(':checked')
);
});