Prebuilt module for commit bd7f3554d8

This commit is contained in:
Paper.js Bot 2016-02-09 15:18:01 +00:00
parent 4e222a6dff
commit e27cf3a3a0
5 changed files with 16 additions and 13 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Feb 9 16:01:06 2016 +0100
* Date: Tue Feb 9 16:11:38 2016 +0100
*
***
*
@ -3411,8 +3411,9 @@ new function() {
clone: function(options) {
var copy = new this.constructor(Item.NO_INSERT),
children = this._children,
insert = Base.pick(options && options.insert, true),
deep = Base.pick(options && options.deep, true);
insert = Base.pick(options ? options.insert : undefined,
options === undefined || options === true),
deep = Base.pick(options ? options.deep : undefined, true);
if (children)
copy.copyAttributes(this);
if (!children || deep)

7
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Feb 9 16:01:06 2016 +0100
* Date: Tue Feb 9 16:11:38 2016 +0100
*
***
*
@ -3411,8 +3411,9 @@ new function() {
clone: function(options) {
var copy = new this.constructor(Item.NO_INSERT),
children = this._children,
insert = Base.pick(options && options.insert, true),
deep = Base.pick(options && options.deep, true);
insert = Base.pick(options ? options.insert : undefined,
options === undefined || options === true),
deep = Base.pick(options ? options.deep : undefined, true);
if (children)
copy.copyAttributes(this);
if (!children || deep)

File diff suppressed because one or more lines are too long

7
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Feb 9 16:01:06 2016 +0100
* Date: Tue Feb 9 16:11:38 2016 +0100
*
***
*
@ -3411,8 +3411,9 @@ new function() {
clone: function(options) {
var copy = new this.constructor(Item.NO_INSERT),
children = this._children,
insert = Base.pick(options && options.insert, true),
deep = Base.pick(options && options.deep, true);
insert = Base.pick(options ? options.insert : undefined,
options === undefined || options === true),
deep = Base.pick(options ? options.deep : undefined, true);
if (children)
copy.copyAttributes(this);
if (!children || deep)

File diff suppressed because one or more lines are too long