Skip to content

Commit

Permalink
Fixed leaked globals.
Browse files Browse the repository at this point in the history
  • Loading branch information
lehni committed Oct 1, 2015
1 parent b8c6eb4 commit fee3a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/path/Curve.js
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ new function() { // Scope for intersection using bezier fat-line clipping
pc = Curve.getPoint(vc, tc),
tl = Curve.getParameterOf(vl, pc.x, pc.y);
if (tl !== null) {
var pl = Curve.getPoint(vl, tl)
var pl = Curve.getPoint(vl, tl),
t1 = flip ? tl : tc,
t2 = flip ? tc : tl;
// If the two curves are connected and the 2nd is very short,
Expand Down

0 comments on commit fee3a90

Please sign in to comment.