Lens templates with tables will potentially run into rendering problems if there are line breaks in the template. Part of the deeper jQuery 1.10.2/2.0.3 code (manipulationTarget) looks for children of a node when adding children to a table element to work with IE8, but if it's a TextNode, there will obviously be no children. The simplest author fix is to make sure <table><tbody> and </tbody></table> are used in lens templates without line breaks; a better fix might involve catching the problem before handing it to jQuery.
Lens templates with tables will potentially run into rendering problems if there are line breaks in the template. Part of the deeper jQuery 1.10.2/2.0.3 code (
manipulationTarget) looks for children of a node when adding children to a table element to work with IE8, but if it's a TextNode, there will obviously be no children. The simplest author fix is to make sure<table><tbody>and</tbody></table>are used in lens templates without line breaks; a better fix might involve catching the problem before handing it to jQuery.