Fixing Dropzone should accept all files when config is "*/*".
This commit is contained in:
		
							parent
							
								
									b2fb7e3fd2
								
							
						
					
					
						commit
						880849a283
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -735,7 +735,7 @@ $(document).ready(function () { | |||
|             headers: {"X-Csrf-Token": csrf}, | ||||
|             maxFiles: $dropz.data('max-file'), | ||||
|             maxFilesize: $dropz.data('max-size'), | ||||
|             acceptedFiles: $dropz.data('accepts'), | ||||
|             acceptedFiles: ($dropz.data('accepts') === '*/*') ? null : $dropz.data('accepts'), | ||||
|             addRemoveLinks: true, | ||||
|             dictDefaultMessage: $dropz.data('default-message'), | ||||
|             dictInvalidFileType: $dropz.data('invalid-input-type'), | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue