We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaa288d commit b8b7cd0Copy full SHA for b8b7cd0
1 file changed
src/jquery.formset.js
@@ -114,11 +114,13 @@
114
// Hide any labels associated with the DELETE checkbox:
115
$('label[for="' + del.attr('id') + '"]').hide();
116
del.remove();
117
+ if (hasChildElements(row) && row.is(':visible')) {
118
+ insertDeleteLink(row);
119
+ }
120
}
121
if (hasChildElements(row)) {
122
row.addClass(options.formCssClass);
123
if (row.is(':visible')) {
- insertDeleteLink(row);
124
applyExtraClasses(row, i);
125
126
0 commit comments