html-to-vdom icon indicating copy to clipboard operation
html-to-vdom copied to clipboard

problem with camelCase tag transform - input autocomplete="off"

Open DragorWW opened this issue 8 years ago • 0 comments

html: <input type="text" autocomplete="off">; vtree property after html-to-vdom:

{
  "attributes": {},
  "type": "text",
  "autoComplete": "off"
}

node after <input type="text"> vtree property after virtual-dom.h:

{
  "autocomplete": true,
  "type": "text",
}

node after <input type="text" autocomplete="off">

DragorWW avatar Jul 14 '16 16:07 DragorWW