Shorten getCurrentPath().

This commit is contained in:
Jürg Lehni 2011-05-15 19:31:25 +01:00
parent dff0c595f0
commit c4c4f51eb9

View file

@ -77,11 +77,9 @@ var CompoundPath = this.CompoundPath = PathItem.extend({
} }
}, new function() { // Injection scope for PostScript-like drawing functions }, new function() { // Injection scope for PostScript-like drawing functions
function getCurrentPath(that) { function getCurrentPath(that) {
if (that._children.length) { if (!that._children.length)
return that._children[that._children.length - 1];
} else {
throw new Error('Use a moveTo() command first'); throw new Error('Use a moveTo() command first');
} return that._children[that._children.length - 1];
} }
var fields = { var fields = {