Skip to content

Commit ac92a9c

Browse files
Simon MeadowsSimon Meadows
authored andcommitted
removed non required bit I missed
1 parent 2cf78b7 commit ac92a9c

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

src/jquery.columnizer.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -268,24 +268,6 @@
268268
return;
269269
}
270270

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-
} else {
284-
this.$tfoot = undefined;
285-
}
286-
}
287-
288-
289271
appendSafe($putInHere, $(node));
290272
}
291273
if($putInHere[0].childNodes.length === 0) return;

0 commit comments

Comments
 (0)