mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Merge pull request #1193 from iconexperience/patch-1
Fix two issues in PathItem.compare()
This commit is contained in:
commit
63cb7bd536
1 changed files with 2 additions and 2 deletions
|
@ -776,11 +776,11 @@ var PathItem = Item.extend(/** @lends PathItem# */{
|
|||
var ok = false;
|
||||
if (path) {
|
||||
var paths1 = this._children || [this],
|
||||
paths2 = path._children.slice() || [path],
|
||||
paths2 = path._children ? path._children.slice() : [path],
|
||||
length1 = paths1.length,
|
||||
length2 = paths2.length,
|
||||
matched = [],
|
||||
count;
|
||||
count = 0;
|
||||
ok = true;
|
||||
for (var i1 = length1 - 1; i1 >= 0 && ok; i1--) {
|
||||
var path1 = paths1[i1];
|
||||
|
|
Loading…
Reference in a new issue