dalekjs / dalek

[unmaintained] DalekJS Base framework
MIT License
695 stars 63 forks source link

dalekjs cannot detect d3 svg element #159

Open fusionchen opened 9 years ago

fusionchen commented 9 years ago

when I attempt to use the Dalekjs to test d3.js SVG tree, I found that Dalekjs cannot locate the elements like: circle,rect, but it can find text DOM element. Can anyone kindle help to solve this issue? Example:

<g>
<circle></circle>  // cannot locate
<text></text>   //located
<rect></rect> // cannot locate
</g>