mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix minification warnings.
This commit is contained in:
parent
8cec4f972d
commit
2539527864
4 changed files with 5 additions and 5 deletions
|
@ -1445,7 +1445,7 @@ var Item = Base.extend(Emitter, /** @lends Item# */{
|
|||
if (!children)
|
||||
copy.copyAttributes(this);
|
||||
// Insert is true by default.
|
||||
if (insert != false) // No double-equal!
|
||||
if (insert === undefined || insert)
|
||||
copy.insertAbove(this);
|
||||
// Make sure we're not overriding the original name in the same parent
|
||||
var name = this._name,
|
||||
|
@ -1589,7 +1589,7 @@ var Item = Base.extend(Emitter, /** @lends Item# */{
|
|||
raster.transform(new Matrix().translate(topLeft.add(size.divide(2)))
|
||||
// Take resolution into account and scale back to original size.
|
||||
.scale(1 / scale));
|
||||
if (insert != false) // No double-equal!
|
||||
if (insert === undefined || insert)
|
||||
raster.insertAbove(this);
|
||||
return raster;
|
||||
},
|
||||
|
|
|
@ -70,7 +70,7 @@ var Layer = Group.extend(/** @lends Layer# */{
|
|||
// Call the group constructor but don't insert yet!
|
||||
props.insert = false;
|
||||
Group.call(this, props);
|
||||
if (insert != false) { // No double-equal!
|
||||
if (insert === undefined || insert) {
|
||||
this._project.addChild(this);
|
||||
// When inserted, also activate the layer by default.
|
||||
this.activate();
|
||||
|
|
|
@ -180,7 +180,7 @@ var Shape = Item.extend(/** @lends Shape# */{
|
|||
// Respect the setting of paper.settings.applyMatrix for new paths:
|
||||
if (paper.settings.applyMatrix)
|
||||
path.setApplyMatrix(true);
|
||||
if (insert != false) // No double-equal!
|
||||
if (insert === undefined || insert)
|
||||
path.insertAbove(this);
|
||||
return path;
|
||||
},
|
||||
|
|
|
@ -1515,7 +1515,7 @@ var Path = PathItem.extend(/** @lends Path# */{
|
|||
shape._matrix.preConcatenate(this._matrix);
|
||||
// Determine and apply the shape's angle of rotation.
|
||||
shape.rotate(topCenter.subtract(center).getAngle() + 90);
|
||||
if (insert != false) // No double-equal!
|
||||
if (insert === undefined || insert)
|
||||
shape.insertAbove(this);
|
||||
return shape;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue