mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Prebuilt module for commit e0a0cd58d5
This commit is contained in:
parent
1d47f1e120
commit
39e5d72459
5 changed files with 10 additions and 8 deletions
5
dist/docs/assets/js/paper.js
vendored
5
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 13 14:37:13 2016 -0700
|
||||
* Date: Wed Apr 13 15:21:35 2016 -0700
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -14353,7 +14353,8 @@ Base.exports.PaperScript = (function() {
|
|||
paper = scope;
|
||||
var view = scope.getView(),
|
||||
tool = /\btool\.\w+|\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/
|
||||
.test(code) ? new Tool() : null,
|
||||
.test(code) && !/\bnew\s+Tool\b/.test(code)
|
||||
? new Tool() : null,
|
||||
toolHandlers = tool ? tool._events : [],
|
||||
handlers = ['onFrame', 'onResize'].concat(toolHandlers),
|
||||
params = [],
|
||||
|
|
2
dist/paper-core.js
vendored
2
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 13 14:37:13 2016 -0700
|
||||
* Date: Wed Apr 13 15:21:35 2016 -0700
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper-core.min.js
vendored
2
dist/paper-core.min.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 13 14:37:13 2016 -0700
|
||||
* Date: Wed Apr 13 15:21:35 2016 -0700
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
5
dist/paper-full.js
vendored
5
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Wed Apr 13 14:37:13 2016 -0700
|
||||
* Date: Wed Apr 13 15:21:35 2016 -0700
|
||||
*
|
||||
***
|
||||
*
|
||||
|
@ -14353,7 +14353,8 @@ Base.exports.PaperScript = (function() {
|
|||
paper = scope;
|
||||
var view = scope.getView(),
|
||||
tool = /\btool\.\w+|\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/
|
||||
.test(code) ? new Tool() : null,
|
||||
.test(code) && !/\bnew\s+Tool\b/.test(code)
|
||||
? new Tool() : null,
|
||||
toolHandlers = tool ? tool._events : [],
|
||||
handlers = ['onFrame', 'onResize'].concat(toolHandlers),
|
||||
params = [],
|
||||
|
|
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