Prebuilt module for commit dbd7a90e23

This commit is contained in:
Paper.js Bot 2016-02-14 00:47:40 +00:00
parent 29bea268e6
commit f444c36fd7
5 changed files with 10 additions and 12 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Feb 13 23:32:29 2016 +0100
* Date: Sun Feb 14 01:45:16 2016 +0100
*
***
*
@ -14127,9 +14127,8 @@ Base.exports.PaperScript = (function() {
function execute(code, scope, options) {
paper = scope;
var view = scope.getView(),
tool = /\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/.test(code)
? new Tool()
: null,
tool = /\btool\.\w+|\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/
.test(code) ? new Tool() : null,
toolHandlers = tool ? tool._events : [],
handlers = ['onFrame', 'onResize'].concat(toolHandlers),
params = [],

2
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Feb 13 23:32:29 2016 +0100
* Date: Sun Feb 14 01:45:16 2016 +0100
*
***
*

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Feb 13 23:32:29 2016 +0100
* Date: Sun Feb 14 01:45:16 2016 +0100
*
***
*

7
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Feb 13 23:32:29 2016 +0100
* Date: Sun Feb 14 01:45:16 2016 +0100
*
***
*
@ -14127,9 +14127,8 @@ Base.exports.PaperScript = (function() {
function execute(code, scope, options) {
paper = scope;
var view = scope.getView(),
tool = /\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/.test(code)
? new Tool()
: null,
tool = /\btool\.\w+|\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/
.test(code) ? new Tool() : null,
toolHandlers = tool ? tool._events : [],
handlers = ['onFrame', 'onResize'].concat(toolHandlers),
params = [],

File diff suppressed because one or more lines are too long