ygj6

Results 94 comments of ygj6

Exporting targets is to generate configuration files which used by `find_package()`. However, msgpack_cpp is a `header-only` library that cannot be processed by `find_package()`, so there is no need to export...

@VosWouter87 You can refer to the https://github.com/ygj6/angular-file-upload/commit/dc92cb7ac3d72fe0a732b4ff427e4f5e5b5abb01. It supports custom upload buttons and also supports dragging files. Hope that can help you.

I tested the scenario you said, the result is true,can you provide test cases ![image](https://user-images.githubusercontent.com/7699524/86445837-a6f9c000-bd45-11ea-9143-1f16b2c275ff.png)

> Just rechecked, this is an even worse edge case : > > We're actually using a modal which holds the input that uploads the files in an iframe. >...

Does your problem persist? I have tried 300M data and succeed.

You can upload files by calling `uploader.uploadItem(item)`. You can obtain `item` by calling `uploader.getNotUploadedItems()`. For example: ```javascript uploader.onAfterAddingFile = function (item) { console.log(uploader.getNotUploadedItems ()); uploader.uploadItem(item); } ``` See [Module-API#methods](https://github.com/nervgh/angular-file-upload/wiki/Module-API#methods)

You can try [filters](https://github.com/nervgh/angular-file-upload/wiki/Module-API#filters).

I need more information to determine the cause of the problem, it is best to provide a test case.

The default filter `folder` will reject files without extensions. You can close it. See the following code: ``` for (var i = 0; i < uploader.filters.length; i++) { if(uploader.filters[i].name ==...