mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-14 00:39:57 -04:00
Prebuilt module for commit bd7f3554d8
This commit is contained in:
parent
4e222a6dff
commit
e27cf3a3a0
5 changed files with 16 additions and 13 deletions
dist
7
dist/docs/assets/js/paper.js
vendored
7
dist/docs/assets/js/paper.js
vendored
|
@ -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
7
dist/paper-core.js
vendored
|
@ -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)
|
||||
|
|
4
dist/paper-core.min.js
vendored
4
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
7
dist/paper-full.js
vendored
7
dist/paper-full.js
vendored
|
@ -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)
|
||||
|
|
4
dist/paper-full.min.js
vendored
4
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue