We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf78b7 commit ac92a9cCopy full SHA for ac92a9c
src/jquery.columnizer.js
@@ -268,24 +268,6 @@
268
return;
269
}
270
271
- // If we enter a <table> element make a copy of <thead> and <tfoot>
272
- // to use each time the <table> splits
273
- if (node.nodeName=='TABLE'){
274
- // Check if the table has a header and clone it
275
- if ($(node).find('thead').length>0){
276
- this.$thead = $(node).find('thead').clone();
277
- } else {
278
- this.$thead = undefined;
279
- }
280
- // Check if the table has a footer and clone it
281
- if ($(node).find('tfoot').length>0){
282
- this.$tfoot = $(node).find('tfoot').clone();
283
284
- this.$tfoot = undefined;
285
286
287
-
288
289
appendSafe($putInHere, $(node));
290
291
if($putInHere[0].childNodes.length === 0) return;
0 commit comments