Fix jshint error caused by #1065

This commit is contained in:
Jürg Lehni 2016-06-10 17:28:46 +02:00
parent 3e2a3827fd
commit e7f7d7c5d1

View file

@ -1053,7 +1053,7 @@ Path.inject(/** @lends Path# */{
}
}
}
intercepts.sort(function(a, b) {return a - b});
intercepts.sort(function(a, b) { return a - b; });
point.x = (intercepts[0] + intercepts[1]) / 2;
}
return point;