You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kotlinjs mangles attributes. To prevent this, it's required to put a @JsName annotation on any attributes that should be preserved.
Tag.namespace is used to determine whether to call document.createElementNS or document.createElement. Because namespace is mangled to namespace_1 by kotlinjs, SVGs don't get rendered.
The text was updated successfully, but these errors were encountered:
kotlinjs mangles attributes. To prevent this, it's required to put a @JsName annotation on any attributes that should be preserved.
Tag.namespace is used to determine whether to call document.createElementNS or document.createElement. Because
namespace
is mangled tonamespace_1
by kotlinjs, SVGs don't get rendered.The text was updated successfully, but these errors were encountered: