spring mvc - Thymeleaf + Polymer -
i'm trying implement material design based on polymer java thymeleaf template engine. started learning tutorial , got exception:
caused by: org.xml.sax.saxparseexception; attribute name "unresolved" associated element type "body" must followed ' = ' character.
as far can understand thymeleaf, default can't deal web components/custom components. possible use polymer in context of thymeleaf template engine?
if have like:
<body unresolved touch-action="auto">
it not work thymeleaf because thymeleaf expects markup valid xhtml , unresolved
on own invalid xhtml markup. following should work:
<body unresolved="" touch-action="auto"> <body unresolved="unresolved" touch-action="auto">
Comments
Post a Comment