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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -