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.
1 parent c2080ef commit b818175Copy full SHA for b818175
1 file changed
src/flow.js
@@ -76,6 +76,7 @@
76
withCredentials: false,
77
preprocess: null,
78
method: 'multipart',
79
+
80
prioritizeFirstAndLastChunk: false,
81
target: '/',
82
testChunks: true,
@@ -925,7 +926,7 @@
925
926
});
927
var percent = bytesLoaded / this.size;
928
// We don't want to lose percentages when an upload is paused
- this._prevProgress = Math.max(this._prevProgress, percent > 0.999 ? 1 : percent);
929
+ this._prevProgress = Math.max(this._prevProgress, percent > 0.9999 ? 1 : percent);
930
return this._prevProgress;
931
},
932
0 commit comments