mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Prebuilt module for commit 0eae0b6e4d
This commit is contained in:
parent
e3f0c9d29d
commit
95c18db6a2
7 changed files with 34 additions and 21 deletions
|
@ -10,6 +10,7 @@
|
|||
|
||||
- SVG Export: Fix error when `Item#matrix` is not invertible (#1580).
|
||||
- SVG Import: Fix gradient default values (#1632).
|
||||
- JSON Import: Prevent overriding `Item#insert()` (#1392).
|
||||
|
||||
# `0.12.1`
|
||||
|
||||
|
|
8
dist/docs/assets/js/paper.js
vendored
8
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Oct 6 15:37:44 2018 +0200
|
||||
* Date: Mon Nov 5 18:11:13 2018 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -546,8 +546,12 @@ statics: {
|
|||
if (args.length === 1 && obj instanceof Item
|
||||
&& (useTarget || !(obj instanceof Layer))) {
|
||||
var arg = args[0];
|
||||
if (Base.isPlainObject(arg))
|
||||
if (Base.isPlainObject(arg)) {
|
||||
arg.insert = false;
|
||||
if (useTarget) {
|
||||
args = args.concat([{ insert: true }])
|
||||
}
|
||||
}
|
||||
}
|
||||
(useTarget ? obj.set : ctor).apply(obj, args);
|
||||
if (useTarget)
|
||||
|
|
8
dist/paper-core.js
vendored
8
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Oct 6 15:37:44 2018 +0200
|
||||
* Date: Mon Nov 5 18:11:13 2018 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -546,8 +546,12 @@ statics: {
|
|||
if (args.length === 1 && obj instanceof Item
|
||||
&& (useTarget || !(obj instanceof Layer))) {
|
||||
var arg = args[0];
|
||||
if (Base.isPlainObject(arg))
|
||||
if (Base.isPlainObject(arg)) {
|
||||
arg.insert = false;
|
||||
if (useTarget) {
|
||||
args = args.concat([{ insert: true }])
|
||||
}
|
||||
}
|
||||
}
|
||||
(useTarget ? obj.set : ctor).apply(obj, args);
|
||||
if (useTarget)
|
||||
|
|
10
dist/paper-core.min.js
vendored
10
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
8
dist/paper-full.js
vendored
8
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Oct 6 15:37:44 2018 +0200
|
||||
* Date: Mon Nov 5 18:11:13 2018 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -546,8 +546,12 @@ statics: {
|
|||
if (args.length === 1 && obj instanceof Item
|
||||
&& (useTarget || !(obj instanceof Layer))) {
|
||||
var arg = args[0];
|
||||
if (Base.isPlainObject(arg))
|
||||
if (Base.isPlainObject(arg)) {
|
||||
arg.insert = false;
|
||||
if (useTarget) {
|
||||
args = args.concat([{ insert: true }])
|
||||
}
|
||||
}
|
||||
}
|
||||
(useTarget ? obj.set : ctor).apply(obj, args);
|
||||
if (useTarget)
|
||||
|
|
18
dist/paper-full.min.js
vendored
18
dist/paper-full.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/paper.d.ts
vendored
2
dist/paper.d.ts
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sat Oct 6 15:37:44 2018 +0200
|
||||
* Date: Mon Nov 5 18:11:13 2018 +0100
|
||||
*
|
||||
* This is an auto-generated type definition.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue