Bloomca / veles

UI library with main focus on performance
https://bloomca.github.io/veles/
MIT License
40 stars 0 forks source link

Apply/remove boolean attributes directly #50

Closed Bloomca closed 3 weeks ago

Bloomca commented 3 weeks ago

Some attributes, like disabled, selected or required are applied directly, instead of used as setAttribute, because they technically don't have any value.

I am not 100% sure if element.disabled = false works as expected, or we'd need to execute delete element.disabled, will need to confirm.