mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Prebuilt module for commit 9a49c2141c
This commit is contained in:
parent
0c3f545464
commit
9c3769456c
5 changed files with 14 additions and 14 deletions
6
dist/docs/assets/js/paper.js
vendored
6
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Jul 26 10:20:30 2016 +0200
|
||||
* Date: Tue Jul 26 10:25:32 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -334,7 +334,7 @@ Base.inject({
|
|||
list.__index = begin + 1;
|
||||
return obj && options && options.clone ? obj.clone() : obj;
|
||||
}
|
||||
obj = Base.create(this.prototype);
|
||||
obj = Base.create(proto);
|
||||
if (readIndex)
|
||||
obj.__read = true;
|
||||
obj = obj.initialize.apply(obj, begin > 0 || begin + amount < length
|
||||
|
@ -422,7 +422,7 @@ Base.inject({
|
|||
},
|
||||
|
||||
isPlainValue: function(obj, asString) {
|
||||
return this.isPlainObject(obj) || Array.isArray(obj)
|
||||
return Base.isPlainObject(obj) || Array.isArray(obj)
|
||||
|| asString && typeof obj === 'string';
|
||||
},
|
||||
|
||||
|
|
6
dist/paper-core.js
vendored
6
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Jul 26 10:20:30 2016 +0200
|
||||
* Date: Tue Jul 26 10:25:32 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -334,7 +334,7 @@ Base.inject({
|
|||
list.__index = begin + 1;
|
||||
return obj && options && options.clone ? obj.clone() : obj;
|
||||
}
|
||||
obj = Base.create(this.prototype);
|
||||
obj = Base.create(proto);
|
||||
if (readIndex)
|
||||
obj.__read = true;
|
||||
obj = obj.initialize.apply(obj, begin > 0 || begin + amount < length
|
||||
|
@ -422,7 +422,7 @@ Base.inject({
|
|||
},
|
||||
|
||||
isPlainValue: function(obj, asString) {
|
||||
return this.isPlainObject(obj) || Array.isArray(obj)
|
||||
return Base.isPlainObject(obj) || Array.isArray(obj)
|
||||
|| asString && typeof obj === 'string';
|
||||
},
|
||||
|
||||
|
|
6
dist/paper-core.min.js
vendored
6
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
6
dist/paper-full.js
vendored
6
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Tue Jul 26 10:20:30 2016 +0200
|
||||
* Date: Tue Jul 26 10:25:32 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -334,7 +334,7 @@ Base.inject({
|
|||
list.__index = begin + 1;
|
||||
return obj && options && options.clone ? obj.clone() : obj;
|
||||
}
|
||||
obj = Base.create(this.prototype);
|
||||
obj = Base.create(proto);
|
||||
if (readIndex)
|
||||
obj.__read = true;
|
||||
obj = obj.initialize.apply(obj, begin > 0 || begin + amount < length
|
||||
|
@ -422,7 +422,7 @@ Base.inject({
|
|||
},
|
||||
|
||||
isPlainValue: function(obj, asString) {
|
||||
return this.isPlainObject(obj) || Array.isArray(obj)
|
||||
return Base.isPlainObject(obj) || Array.isArray(obj)
|
||||
|| asString && typeof obj === 'string';
|
||||
},
|
||||
|
||||
|
|
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