Prebuilt module for commit e0a0cd58d5

This commit is contained in:
Paper.js Bot 2016-04-13 22:26:51 +00:00
parent 1d47f1e120
commit 39e5d72459
5 changed files with 10 additions and 8 deletions

View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; paper = scope;
var view = scope.getView(), var view = scope.getView(),
tool = /\btool\.\w+|\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/ 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 : [], toolHandlers = tool ? tool._events : [],
handlers = ['onFrame', 'onResize'].concat(toolHandlers), handlers = ['onFrame', 'onResize'].concat(toolHandlers),
params = [], params = [],

2
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * All rights reserved.
* *
* Date: Wed Apr 13 14:37:13 2016 -0700 * Date: Wed Apr 13 15:21:35 2016 -0700
* *
*** ***
* *

View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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
View file

@ -9,7 +9,7 @@
* *
* All rights reserved. * 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; paper = scope;
var view = scope.getView(), var view = scope.getView(),
tool = /\btool\.\w+|\s+on(?:Key|Mouse)(?:Up|Down|Move|Drag)\b/ 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 : [], toolHandlers = tool ? tool._events : [],
handlers = ['onFrame', 'onResize'].concat(toolHandlers), handlers = ['onFrame', 'onResize'].concat(toolHandlers),
params = [], params = [],

File diff suppressed because one or more lines are too long