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 0b68b81 commit 18ba425Copy full SHA for 18ba425
js/jquery.fileupload-ui.js
@@ -255,19 +255,16 @@
255
.find('.bar').css(
256
'width',
257
progress + '%'
258
- ).parent().attr(
259
- 'aria-valuenow',
260
- progress
261
- ).attr(
262
- 'aria-valuetext',
263
- progress + '%'
264
).end()
265
.find('.progress-extended').each(function () {
266
$(this).html(
267
$this.data('fileupload')
268
._renderExtendedProgress(data)
269
);
270
});
+ $this.find('.fileupload-progress').find('.bar').parent()
+ .attr('aria-valuenow', progress)
+ .attr('aria-valuetext', progress + '%');
271
},
272
// Callback for uploads start, equivalent to the global ajaxStart event:
273
start: function (e) {
0 commit comments