mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-14 00:39:57 -04:00
Remove unnecessary commas.
Found using jscritic.com.
This commit is contained in:
parent
01dbfe705c
commit
400bc69159
2 changed files with 2 additions and 2 deletions
src
|
@ -1775,7 +1775,7 @@ var Item = Base.extend(Callback, /** @lends Item# */{
|
|||
// The default implementation honly handles 'fill' through #_contains()
|
||||
if (options.fill && this.hasFill() && this._contains(point))
|
||||
return new HitResult('fill', this);
|
||||
},
|
||||
}
|
||||
}, { // Now injection block for statics below
|
||||
// DOCS: Item#matches
|
||||
matches: function(match) {
|
||||
|
|
|
@ -318,7 +318,7 @@ var PathItem = Item.extend(/** @lends PathItem# */{
|
|||
var winding = this._getWinding(point, false, true);
|
||||
return !!(this.getWindingRule() === 'evenodd' ? winding & 1 : winding);
|
||||
/*#*/ } // !__options.nativeContains && __options.booleanOperations
|
||||
},
|
||||
}
|
||||
|
||||
/**
|
||||
* Smooth bezier curves without changing the amount of segments or their
|
||||
|
|
Loading…
Reference in a new issue