Prebuilt module for commit 348886365a

This commit is contained in:
Paper.js Bot 2018-10-15 08:18:07 +00:00
parent 0598871048
commit f6748262e8
5 changed files with 25 additions and 19 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Oct 14 23:12:03 2018 +0200
* Date: Mon Oct 15 10:12:15 2018 +0200
*
***
*
@ -4559,7 +4559,9 @@ new function() {
if (itemSelected)
this._drawSelected(ctx, mx, selectionItems);
if (positionSelected) {
var point = mx._transformPoint(this.getPosition(true)),
var pos = this.getPosition(true),
parent = this._parent,
point = parent ? parent.localToGlobal(pos) : pos,
x = point.x,
y = point.y;
ctx.beginPath();

6
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sun Oct 14 23:12:03 2018 +0200
* Date: Mon Oct 15 10:12:15 2018 +0200
*
***
*
@ -4559,7 +4559,9 @@ new function() {
if (itemSelected)
this._drawSelected(ctx, mx, selectionItems);
if (positionSelected) {
var point = mx._transformPoint(this.getPosition(true)),
var pos = this.getPosition(true),
parent = this._parent,
point = parent ? parent.localToGlobal(pos) : pos,
x = point.x,
y = point.y;
ctx.beginPath();

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: Sun Oct 14 23:12:03 2018 +0200
* Date: Mon Oct 15 10:12:15 2018 +0200
*
***
*
@ -4559,7 +4559,9 @@ new function() {
if (itemSelected)
this._drawSelected(ctx, mx, selectionItems);
if (positionSelected) {
var point = mx._transformPoint(this.getPosition(true)),
var pos = this.getPosition(true),
parent = this._parent,
point = parent ? parent.localToGlobal(pos) : pos,
x = point.x,
y = point.y;
ctx.beginPath();

File diff suppressed because one or more lines are too long