Fix endless recursion in CompoundPath#reduce()

This commit is contained in:
Jürg Lehni 2015-01-03 00:51:06 +01:00
parent 5e654ca64e
commit 98686ef888

View file

@ -139,7 +139,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{
this.remove();
return path;
} else {
return reduce.call(this);
return reduce.base.call(this);
}
},