dfilatov / vidom

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

Falsy boolean attributes are rendered wrong #149

Closed dfilatov closed 8 years ago

dfilatov commented 8 years ago

Input:

node('textarea').attrs({ disabled : false });

Actual result:

<textarea disabled="false"/>

Expected result:

<textarea/>