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 a2a6722 commit db32cc1Copy full SHA for db32cc1
js/jquery.fileupload-ui.js
@@ -54,6 +54,8 @@
54
// as the user clicks on the start buttons. To enable automatic
55
// uploads, set the following option to true:
56
autoUpload: false,
57
+ // The class to show/hide UI elements:
58
+ showElementClass: 'in',
59
// The ID of the upload template:
60
uploadTemplateId: 'template-upload',
61
// The ID of the download template:
@@ -614,9 +616,9 @@
614
616
};
615
617
node
618
.bind($.support.transition.end, transitionEndHandler)
- .toggleClass('in');
619
+ .toggleClass(this.options.showElementClass);
620
} else {
- node.toggleClass('in');
621
+ node.toggleClass(this.options.showElementClass);
622
dfd.resolveWith(node);
623
}
624
return dfd;
0 commit comments