kopia lustrzana https://github.com/backface/turtlestitch
Fixed minor === bug
rodzic
91616f6438
commit
149b51b950
2
paint.js
2
paint.js
|
@ -595,7 +595,7 @@ PaintCanvasMorph.prototype.init = function (shift) {
|
||||||
// Calculate the center of all the non-transparent pixels on the canvas.
|
// Calculate the center of all the non-transparent pixels on the canvas.
|
||||||
PaintCanvasMorph.prototype.calculateCanvasCenter = function(canvas) {
|
PaintCanvasMorph.prototype.calculateCanvasCenter = function(canvas) {
|
||||||
var canvasBounds = Costume.prototype.canvasBoundingBox(canvas);
|
var canvasBounds = Costume.prototype.canvasBoundingBox(canvas);
|
||||||
if (canvasBounds == null) {
|
if (canvasBounds === null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
// Can't use canvasBounds.center(), it rounds down.
|
// Can't use canvasBounds.center(), it rounds down.
|
||||||
|
|
Ładowanie…
Reference in New Issue