plumatic / dommy

A tiny ClojureScript DOM manipulation and event library
759 stars 74 forks source link

Most of the SVG tags are missed #49

Closed jmgimeno closed 10 years ago

jmgimeno commented 10 years ago

Your definition

(def +svg-tags+ #{"svg" "line" })

does not include most of the svg tags.

The next definition completes the set.

(def +svg-tags+ #{"svg" "g" "rect" "circle" "clipPath" "path" "line" "polygon" "polyline" "text" "textPath"})

And that's all !!

Thanks,

Juan Manuel

jmgimeno commented 10 years ago

Merged commit has closed it.