File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * jQuery File Upload Plugin 5.31.3
2
+ * jQuery File Upload Plugin 5.31.4
3
3
* https://github.com/blueimp/jQuery-File-Upload
4
4
*
5
5
* Copyright 2010, Sebastian Tschan
233
233
'forceIframeTransport'
234
234
] ,
235
235
236
+ _blobSlice : window . Blob && ( Blob . prototype . slice ||
237
+ Blob . prototype . webkitSlice || Blob . prototype . mozSlice ) ,
238
+
236
239
_BitrateTimer : function ( ) {
237
240
this . timestamp = ( ( Date . now ) ? Date . now ( ) : ( new Date ( ) ) . getTime ( ) ) ;
238
241
this . loaded = 0 ;
632
635
fs = file . size ,
633
636
ub = options . uploadedBytes = options . uploadedBytes || 0 ,
634
637
mcs = options . maxChunkSize || fs ,
635
- slice = file . slice || file . webkitSlice || file . mozSlice ,
638
+ slice = this . _blobSlice ,
636
639
dfd = $ . Deferred ( ) ,
637
640
promise = dfd . promise ( ) ,
638
641
jqXHR ,
You can’t perform that action at this time.
0 commit comments