File tree Expand file tree Collapse file tree 6 files changed +154
-181
lines changed Expand file tree Collapse file tree 6 files changed +154
-181
lines changed Original file line number Diff line number Diff line change 15
15
< head >
16
16
< meta charset ="utf-8 ">
17
17
< title > jQuery File Upload Plugin postMessage API</ title >
18
- < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.7.2 /jquery.min.js "> </ script >
18
+ < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.8.0 /jquery.min.js "> </ script >
19
19
</ head >
20
20
< body >
21
21
< script >
Original file line number Diff line number Diff line change @@ -204,8 +204,8 @@ <h3>Demo Notes</h3>
204
204
</ tr >
205
205
{ % } %}
206
206
</ script >
207
- < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.7.2 /jquery.min.js "> </ script >
208
- < script src ="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.18 /jquery-ui.min.js "> </ script >
207
+ < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.8.0 /jquery.min.js "> </ script >
208
+ < script src ="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23 /jquery-ui.min.js "> </ script >
209
209
<!-- The Templates plugin is included to render the upload/download listings -->
210
210
< script src ="http://blueimp.github.com/JavaScript-Templates/tmpl.min.js "> </ script >
211
211
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
Original file line number Diff line number Diff line change 1
1
/*
2
- * jQuery File Upload Plugin 5.16
2
+ * jQuery File Upload Plugin 5.16.1
3
3
* https://github.com/blueimp/jQuery-File-Upload
4
4
*
5
5
* Copyright 2010, Sebastian Tschan
666
666
options . limitConcurrentUploads > that . _sending ) {
667
667
// Start the next queued upload,
668
668
// that has not been aborted:
669
- var nextSlot = that . _slots . shift ( ) ;
669
+ var nextSlot = that . _slots . shift ( ) ,
670
+ isPending ;
670
671
while ( nextSlot ) {
671
- if ( ! nextSlot . isRejected ( ) ) {
672
+ // jQuery 1.6 doesn't provide .state(),
673
+ // while jQuery 1.8+ removed .isRejected():
674
+ isPending = nextSlot . state ?
675
+ nextSlot . state ( ) === 'pending' :
676
+ ! nextSlot . isRejected ( ) ;
677
+ if ( isPending ) {
672
678
nextSlot . resolve ( ) ;
673
679
break ;
674
680
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * jQuery UI Widget 1.8.22 +amd
2
+ * jQuery UI Widget 1.8.23 +amd
3
3
* https://github.com/blueimp/jQuery-File-Upload
4
4
*
5
5
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
Original file line number Diff line number Diff line change @@ -129,8 +129,8 @@ <h2 id="qunit-userAgent"></h2>
129
129
</ tr >
130
130
{ % } %}
131
131
</ script >
132
- < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.7.2 /jquery.min.js "> </ script >
133
- < script src ="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.18 /jquery-ui.min.js "> </ script >
132
+ < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.8.0 /jquery.min.js "> </ script >
133
+ < script src ="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23 /jquery-ui.min.js "> </ script >
134
134
< script src ="http://blueimp.github.com/JavaScript-Templates/tmpl.min.js "> </ script >
135
135
< script src ="http://blueimp.github.com/JavaScript-Load-Image/load-image.min.js "> </ script >
136
136
< script src ="http://blueimp.github.com/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js "> </ script >
You can’t perform that action at this time.
0 commit comments