I was playing with raphael and dom-js when Raphael crashed before sending the error
SVG container not found.
This was happening because con was null (so when it tried to access to con.x, it crashed). I fixed this small bug.
When testing my modifications, it appears the unit tests weren't launching because of package.json requiring QUnit 2.0.1 but the tests are written for QUnit 1.x. Reverted back to QUnit 1.x in package.json.
I was playing with raphael and dom-js when Raphael crashed before sending the error
This was happening because
con
was null (so when it tried to access tocon.x
, it crashed). I fixed this small bug.When testing my modifications, it appears the unit tests weren't launching because of
package.json
requiringQUnit 2.0.1
but the tests are written forQUnit 1.x
. Reverted back toQUnit 1.x
inpackage.json
.