#531 closed defect (invalid)
bad implementation of dojo.svg.setCoords
Reported by: | Arlo White | Owned by: | anonymous |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Core | Version: | 0.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Found a small bug in svg.js
dojo.svg.setCoords = function(node, coords){ var p = dojo.svg.getCoords(); ... };
must be replace with :
dojo.svg.setCoords = function(node, coords){ var p = dojo.svg.getCoords(node); ... };
Note: See
TracTickets for help on using
tickets.
This code is considered "unreleased"; even the getCoords function is not working correctly.
SVG is experimental code; will fix when we get to that portion of it.