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
The merge! function takes a hiccup data structure, not another DOM node, which is what you're passing in via the render call.
The render function creates live DOM nodes and is useful for interop with other JavaScript libraries or if you want to do fancy stuff yourself; you don't need to use it if you are just using merge!.
I'll leave this open until you can verify the fix, though.
Hi!
I'm getting
TypeError: m.tag is undefined ...
(in FF) on(merge! container (render ...))
. In Chrome it isUncaught TypeError: Cannot call method 'toLowerCase' of undefined
.It seems that https://github.com/lynaghk/singult/blob/master/src/coffee/Singult.coffee#L259 should be like
m.tagName.toLowerCase
.Thanks in advance :)
The text was updated successfully, but these errors were encountered: