Prebuilt module for commit 68be3f102e

This commit is contained in:
Paper.js Bot 2016-06-11 09:16:59 +00:00
parent 8d1daa3a1b
commit 0956c7d9ff
5 changed files with 13 additions and 13 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Fri Jun 10 23:51:56 2016 +0200
* Date: Sat Jun 11 11:14:19 2016 +0200
*
***
*
@ -12178,12 +12178,12 @@ new function() {
point = this.getEventPoint(event);
var inView = this.getBounds().contains(point),
hit = inView && hitItems && this._project.hitTest(point, {
hit = hitItems && inView && this._project.hitTest(point, {
tolerance: 0,
fill: true,
stroke: true
}),
item = hit && hit.item || undefined,
item = (hitItems ? hit && hit.item : overItem) || undefined,
handle = false,
mouse = {};
mouse[type.substr(5)] = true;

6
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Fri Jun 10 23:51:56 2016 +0200
* Date: Sat Jun 11 11:14:19 2016 +0200
*
***
*
@ -12178,12 +12178,12 @@ new function() {
point = this.getEventPoint(event);
var inView = this.getBounds().contains(point),
hit = inView && hitItems && this._project.hitTest(point, {
hit = hitItems && inView && this._project.hitTest(point, {
tolerance: 0,
fill: true,
stroke: true
}),
item = hit && hit.item || undefined,
item = (hitItems ? hit && hit.item : overItem) || undefined,
handle = false,
mouse = {};
mouse[type.substr(5)] = true;

File diff suppressed because one or more lines are too long

6
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Fri Jun 10 23:51:56 2016 +0200
* Date: Sat Jun 11 11:14:19 2016 +0200
*
***
*
@ -12178,12 +12178,12 @@ new function() {
point = this.getEventPoint(event);
var inView = this.getBounds().contains(point),
hit = inView && hitItems && this._project.hitTest(point, {
hit = hitItems && inView && this._project.hitTest(point, {
tolerance: 0,
fill: true,
stroke: true
}),
item = hit && hit.item || undefined,
item = (hitItems ? hit && hit.item : overItem) || undefined,
handle = false,
mouse = {};
mouse[type.substr(5)] = true;

File diff suppressed because one or more lines are too long