We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents adc8b80 + 75fe73e commit 851ff10Copy full SHA for 851ff10
1 file changed
src/flow.js
@@ -57,7 +57,11 @@
57
* Check if directory upload is supported
58
* @type {boolean}
59
*/
60
- this.supportDirectory = /Chrome/.test(window.navigator.userAgent);
+ this.supportDirectory = (
61
+ /Chrome/.test(window.navigator.userAgent) ||
62
+ /Firefox/.test(window.navigator.userAgent) ||
63
+ /Edge/.test(window.navigator.userAgent)
64
+ );
65
66
/**
67
* List of FlowFile objects
0 commit comments