elm / virtual-dom

The foundation of HTML and SVG in Elm.
https://package.elm-lang.org/packages/elm/virtual-dom/latest
BSD 3-Clause "New" or "Revised" License
209 stars 80 forks source link

Fix diffing for namespaced attributes (Fixes #62) #159

Open anka-213 opened 4 years ago

anka-213 commented 4 years ago

The value of a namespaced attribute is an object on the form

{ __namespace: String
, __value: String
}

so we cannot use reference equality to compare them.

See issue #62