mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Prebuilt module for commit 68be3f102e
This commit is contained in:
parent
8d1daa3a1b
commit
0956c7d9ff
5 changed files with 13 additions and 13 deletions
6
dist/docs/assets/js/paper.js
vendored
6
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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);
|
point = this.getEventPoint(event);
|
||||||
|
|
||||||
var inView = this.getBounds().contains(point),
|
var inView = this.getBounds().contains(point),
|
||||||
hit = inView && hitItems && this._project.hitTest(point, {
|
hit = hitItems && inView && this._project.hitTest(point, {
|
||||||
tolerance: 0,
|
tolerance: 0,
|
||||||
fill: true,
|
fill: true,
|
||||||
stroke: true
|
stroke: true
|
||||||
}),
|
}),
|
||||||
item = hit && hit.item || undefined,
|
item = (hitItems ? hit && hit.item : overItem) || undefined,
|
||||||
handle = false,
|
handle = false,
|
||||||
mouse = {};
|
mouse = {};
|
||||||
mouse[type.substr(5)] = true;
|
mouse[type.substr(5)] = true;
|
||||||
|
|
6
dist/paper-core.js
vendored
6
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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);
|
point = this.getEventPoint(event);
|
||||||
|
|
||||||
var inView = this.getBounds().contains(point),
|
var inView = this.getBounds().contains(point),
|
||||||
hit = inView && hitItems && this._project.hitTest(point, {
|
hit = hitItems && inView && this._project.hitTest(point, {
|
||||||
tolerance: 0,
|
tolerance: 0,
|
||||||
fill: true,
|
fill: true,
|
||||||
stroke: true
|
stroke: true
|
||||||
}),
|
}),
|
||||||
item = hit && hit.item || undefined,
|
item = (hitItems ? hit && hit.item : overItem) || undefined,
|
||||||
handle = false,
|
handle = false,
|
||||||
mouse = {};
|
mouse = {};
|
||||||
mouse[type.substr(5)] = true;
|
mouse[type.substr(5)] = true;
|
||||||
|
|
4
dist/paper-core.min.js
vendored
4
dist/paper-core.min.js
vendored
File diff suppressed because one or more lines are too long
6
dist/paper-full.js
vendored
6
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* All rights reserved.
|
* 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);
|
point = this.getEventPoint(event);
|
||||||
|
|
||||||
var inView = this.getBounds().contains(point),
|
var inView = this.getBounds().contains(point),
|
||||||
hit = inView && hitItems && this._project.hitTest(point, {
|
hit = hitItems && inView && this._project.hitTest(point, {
|
||||||
tolerance: 0,
|
tolerance: 0,
|
||||||
fill: true,
|
fill: true,
|
||||||
stroke: true
|
stroke: true
|
||||||
}),
|
}),
|
||||||
item = hit && hit.item || undefined,
|
item = (hitItems ? hit && hit.item : overItem) || undefined,
|
||||||
handle = false,
|
handle = false,
|
||||||
mouse = {};
|
mouse = {};
|
||||||
mouse[type.substr(5)] = true;
|
mouse[type.substr(5)] = true;
|
||||||
|
|
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