Changeset 1188:7867c72294e6 for admin
- Timestamp:
- 07/15/13 16:26:48 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/jsUpload/jquery.fileupload-ui.js
r1144 r1188 107 107 // Callback for the start of each file upload request: 108 108 send: function (e, data) { 109 $(this).find('.start').hide(); 109 110 var that = $(this).data('blueimp-fileupload') || 110 111 $(this).data('fileupload'); … … 128 129 // Callback for successful uploads: 129 130 done: function (e, data) { 131 130 132 var that = $(this).data('blueimp-fileupload') || 131 133 $(this).data('fileupload'), … … 269 271 start: function (e) { 270 272 var that = $(this).data('blueimp-fileupload') || 271 $(this).data('fileupload');273 $(this).find('.start').hide(); 272 274 that._resetFinishedDeferreds(); 273 275 that._transition($(this).find('.fileupload-progress')).done( 276 274 277 function () { 278 275 279 that._trigger('started', e); 276 280 } … … 279 283 // Callback for uploads stop, equivalent to the global ajaxStop event: 280 284 stop: function (e) { 285 $(this).find('.start').show(); 281 286 var that = $(this).data('blueimp-fileupload') || 282 287 $(this).data('fileupload'),
Note: See TracChangeset
for help on using the changeset viewer.