BlackPepperSoftware / thymeleaf-fragment.js

Process Thymeleaf fragments in the browser.
Apache License 2.0
8 stars 3 forks source link

Processing Thymeleaf attributes should be removed #13

Closed markhobson closed 7 years ago

markhobson commented 7 years ago

When fragments are included/replaced their Thymeleaf attributes are preserved. For example:

<div th:include="fragments::hello"></div>

Becomes:

<div th:include="fragments::hello">Hello World!</div>

But should be:

<div>Hello World!</div>