Closed oscarotero closed 2 years ago
Thanks
Thanks for the quick fix. When is planned to tag a new version containing this fix?
I'll push it out now, mb
Thanks, it works fine now. The only thing is that className now includes a space character:
console.log(element.className); // "" (when it's empty, there's no space)
element.classList.add("bar");
console.log(element.className); // " bar" (has a space in the beginning)
Hrm... Yeah, @0kku looks like there's still one more thing
Sigh… I could've sworn I checked for that.
Should be fixed now.
It's perfect. Thanks!
Hi. In the version
0.1.28-alpha
theclassName
property doesn't update the value if it was updated previously withclassList
:In the previous version (
v0.1.27-alpha
) the className value was successfuly updated tofoo bar
.