File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * jQuery File Upload User Interface Plugin 6.8
2
+ * jQuery File Upload User Interface Plugin 6.8.1
3
3
* https://github.com/blueimp/jQuery-File-Upload
4
4
*
5
5
* Copyright 2010, Sebastian Tschan
138
138
// Callback for successful uploads:
139
139
done : function ( e , data ) {
140
140
var that = $ ( this ) . data ( 'fileupload' ) ,
141
- template ,
142
- preview ;
141
+ template ;
143
142
if ( data . context ) {
144
143
data . context . each ( function ( index ) {
145
144
var file = ( $ . isArray ( data . result ) &&
525
524
} ,
526
525
527
526
_transition : function ( node ) {
528
- var that = this ,
529
- dfd = $ . Deferred ( ) ;
527
+ var dfd = $ . Deferred ( ) ;
530
528
if ( $ . support . transition && node . hasClass ( 'fade' ) ) {
531
529
node . bind (
532
530
$ . support . transition . end ,
Original file line number Diff line number Diff line change 1
1
/*
2
- * jQuery File Upload Plugin 5.11.1
2
+ * jQuery File Upload Plugin 5.11.2
3
3
* https://github.com/blueimp/jQuery-File-Upload
4
4
*
5
5
* Copyright 2010, Sebastian Tschan
209
209
var formData ;
210
210
if ( typeof options . formData === 'function' ) {
211
211
return options . formData ( options . form ) ;
212
- } else if ( $ . isArray ( options . formData ) ) {
212
+ }
213
+ if ( $ . isArray ( options . formData ) ) {
213
214
return options . formData ;
214
- } else if ( options . formData ) {
215
+ }
216
+ if ( options . formData ) {
215
217
formData = [ ] ;
216
218
$ . each ( options . formData , function ( name , value ) {
217
219
formData . push ( { name : name , value : value } ) ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * jQuery File Upload Plugin Localization Example 6.5
2
+ * jQuery File Upload Plugin Localization Example 6.5.1
3
3
* https://github.com/blueimp/jQuery-File-Upload
4
4
*
5
5
* Copyright 2012, Sebastian Tschan
9
9
* http://www.opensource.org/licenses/MIT
10
10
*/
11
11
12
+ /*global window */
13
+
12
14
window . locale = {
13
15
"fileupload" : {
14
16
"errors" : {
You can’t perform that action at this time.
0 commit comments