Prebuilt module for commit de9653ab45

This commit is contained in:
Paper.js Bot 2016-02-09 09:09:55 +00:00
parent 237d8db30d
commit df790ce2e9
5 changed files with 13 additions and 10 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Feb 9 09:59:19 2016 +0100
* Date: Tue Feb 9 10:07:28 2016 +0100
*
***
*
@ -12112,7 +12112,8 @@ var CanvasView = View.extend({
ctx = this._context,
size = this._viewSize;
ctx.clearRect(0, 0, size.width + 1, size.height + 1);
project.draw(ctx, this._matrix, this._pixelRatio);
if (project)
project.draw(ctx, this._matrix, this._pixelRatio);
this._needsUpdate = false;
return true;
}

5
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Feb 9 09:59:19 2016 +0100
* Date: Tue Feb 9 10:07:28 2016 +0100
*
***
*
@ -12112,7 +12112,8 @@ var CanvasView = View.extend({
ctx = this._context,
size = this._viewSize;
ctx.clearRect(0, 0, size.width + 1, size.height + 1);
project.draw(ctx, this._matrix, this._pixelRatio);
if (project)
project.draw(ctx, this._matrix, this._pixelRatio);
this._needsUpdate = false;
return true;
}

File diff suppressed because one or more lines are too long

5
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Tue Feb 9 09:59:19 2016 +0100
* Date: Tue Feb 9 10:07:28 2016 +0100
*
***
*
@ -12112,7 +12112,8 @@ var CanvasView = View.extend({
ctx = this._context,
size = this._viewSize;
ctx.clearRect(0, 0, size.width + 1, size.height + 1);
project.draw(ctx, this._matrix, this._pixelRatio);
if (project)
project.draw(ctx, this._matrix, this._pixelRatio);
this._needsUpdate = false;
return true;
}

File diff suppressed because one or more lines are too long