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 e51e39c commit 2bbed69Copy full SHA for 2bbed69
js/jquery.fileupload.js
@@ -1,5 +1,5 @@
1
/*
2
- * jQuery File Upload Plugin 5.31.4
+ * jQuery File Upload Plugin 5.31.5
3
* https://github.com/blueimp/jQuery-File-Upload
4
*
5
* Copyright 2010, Sebastian Tschan
@@ -233,8 +233,10 @@
233
'forceIframeTransport'
234
],
235
236
- _blobSlice: window.Blob && (Blob.prototype.slice ||
237
- Blob.prototype.webkitSlice || Blob.prototype.mozSlice),
+ _blobSlice: function () {
+ var slice = this.slice || this.webkitSlice || this.mozSlice;
238
+ return slice.apply(this, arguments);
239
+ },
240
241
_BitrateTimer: function () {
242
this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime());
0 commit comments