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 ace155d commit e1bff7dCopy full SHA for e1bff7d
js/jquery.fileupload-ui.js
@@ -1,5 +1,5 @@
1
/*
2
- * jQuery File Upload User Interface Plugin 7.3
+ * jQuery File Upload User Interface Plugin 7.3.1
3
* https://github.com/blueimp/jQuery-File-Upload
4
*
5
* Copyright 2010, Sebastian Tschan
@@ -519,6 +519,12 @@
519
// so we have to resolve manually:
520
dfd.resolveWith(node);
521
}
522
+ node.on('remove', function () {
523
+ // If the element is removed before the
524
+ // transition finishes, transition events are
525
+ // not triggered, resolve manually:
526
+ dfd.resolveWith(node);
527
+ });
528
},
529
{
530
maxWidth: options.previewMaxWidth,
0 commit comments