jadrake75 / ng-scrolling-table

MIT License
8 stars 2 forks source link

caption tag is removed #82

Closed davidglarson closed 9 years ago

davidglarson commented 9 years ago

If you create a table like this using ng-scrolling-table, the caption tag is removed in the rendered HTML:

My Table
Stuff Things
{{junk.stuff}} {{junk.things}}

Refer to this tryit: http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_caption_default_css

jadrake75 commented 9 years ago

The reason for this is we are copying just the THEAD and TBODY elements into the generated tables. We should probably copy any elements prior to THEAD into the top table and any between or after into the table surrounding the TBODY.

jadrake75 commented 9 years ago

THEAD, CAPTION and TFOOT are now supported