mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Prebuilt module for commit 964d8cf7d6
This commit is contained in:
parent
f6d1bf08b4
commit
3ea1b2e7f2
6 changed files with 14 additions and 12 deletions
|
@ -107,6 +107,8 @@ contribute to the code.
|
|||
- `Matrix` properties `#b` and `#c` have been reversed to match common standard.
|
||||
- `#importSVG()`: improve handling of style inheritance for nested `<defs>`.
|
||||
- Move `PaperScript#execute()` URL argument into `options.url` (#902).
|
||||
- PaperScript: Only translate `==` to `equals() calls for `Point`, `Size` and
|
||||
`Color` (#1043).
|
||||
|
||||
### Added
|
||||
- Use unified code-base for browsers, Node.js, Electron, and anything
|
||||
|
|
8
dist/docs/assets/js/paper.js
vendored
8
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Jun 10 13:04:57 2016 +0200
|
||||
* Date: Fri Jun 10 13:41:36 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -14149,8 +14149,8 @@ Base.exports.PaperScript = (function() {
|
|||
'*': '__multiply',
|
||||
'/': '__divide',
|
||||
'%': '__modulo',
|
||||
'==': 'equals',
|
||||
'!=': 'equals'
|
||||
'==': '__equals',
|
||||
'!=': '__equals'
|
||||
};
|
||||
|
||||
var unaryOperators = {
|
||||
|
@ -14159,7 +14159,7 @@ Base.exports.PaperScript = (function() {
|
|||
};
|
||||
|
||||
var fields = Base.each(
|
||||
['add', 'subtract', 'multiply', 'divide', 'modulo', 'negate'],
|
||||
['add', 'subtract', 'multiply', 'divide', 'modulo', 'equals', 'negate'],
|
||||
function(name) {
|
||||
this['__' + name] = '#' + name;
|
||||
},
|
||||
|
|
2
dist/paper-core.js
vendored
2
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Jun 10 13:04:57 2016 +0200
|
||||
* Date: Fri Jun 10 13:41:36 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper-core.min.js
vendored
2
dist/paper-core.min.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Jun 10 13:04:57 2016 +0200
|
||||
* Date: Fri Jun 10 13:41:36 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
8
dist/paper-full.js
vendored
8
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Fri Jun 10 13:04:57 2016 +0200
|
||||
* Date: Fri Jun 10 13:41:36 2016 +0200
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -14149,8 +14149,8 @@ Base.exports.PaperScript = (function() {
|
|||
'*': '__multiply',
|
||||
'/': '__divide',
|
||||
'%': '__modulo',
|
||||
'==': 'equals',
|
||||
'!=': 'equals'
|
||||
'==': '__equals',
|
||||
'!=': '__equals'
|
||||
};
|
||||
|
||||
var unaryOperators = {
|
||||
|
@ -14159,7 +14159,7 @@ Base.exports.PaperScript = (function() {
|
|||
};
|
||||
|
||||
var fields = Base.each(
|
||||
['add', 'subtract', 'multiply', 'divide', 'modulo', 'negate'],
|
||||
['add', 'subtract', 'multiply', 'divide', 'modulo', 'equals', 'negate'],
|
||||
function(name) {
|
||||
this['__' + name] = '#' + name;
|
||||
},
|
||||
|
|
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