givanz / VvvebJs

Drag and drop page builder library written in vanilla javascript without dependencies or build tools.
https://www.vvveb.com/vvvebjs/editor.html
Apache License 2.0
7.07k stars 1.62k forks source link

Error in attribute & non closing </svg> #232

Closed kepman closed 2 years ago

kepman commented 2 years ago

https://github.com/givanz/VvvebJs/blob/fc08d2ddd96e4458e6791c0e902db28fc933cade/editor.html#L460

There seems to be a type error at the end of line 460 -> (the y1="" attr)

stroke-width="2" y1="2 y2="2"/> should be: stroke-width="2" y1="2" y2="2"/>

Also on the end of line 461 -> expected a closing tag:

givanz commented 2 years ago

Thanks for the bug report, I added the missing closing tag in the last commit.