dfilatov / vidom

Library to build UI based on virtual DOM
MIT License
415 stars 16 forks source link

No support for overloaded boolean properties in SSR #110

Closed ghost closed 7 years ago

ghost commented 9 years ago

You are not supporting overloaded boolean properties.

createNode("a").attrs({ href: "/images/xxx.jpg", download: true })

Result <a href="/images/xxx.jpg" download="true"></a> Expected result <a href="/images/xxx.jpg" download></a>