diff --git a/dist/fabric.js b/dist/fabric.js index b00e9a5a..56b39f56 100644 --- a/dist/fabric.js +++ b/dist/fabric.js @@ -13849,8 +13849,8 @@ fabric.util.object.extend(fabric.Object.prototype, /** @lends fabric.Object.prot }, /** + * Recalculates line points given width and height * @private - * Recalculate line points from width and height. */ calcLinePoints: function() { var xMult = this.x1 <= this.x2 ? -1 : 1, diff --git a/dist/fabric.min.js.gz b/dist/fabric.min.js.gz index ae566582..255fb13d 100644 Binary files a/dist/fabric.min.js.gz and b/dist/fabric.min.js.gz differ diff --git a/dist/fabric.require.js b/dist/fabric.require.js index 501fa7ca..8b2d56d9 100644 --- a/dist/fabric.require.js +++ b/dist/fabric.require.js @@ -13849,8 +13849,8 @@ fabric.util.object.extend(fabric.Object.prototype, /** @lends fabric.Object.prot }, /** + * Recalculates line points given width and height * @private - * Recalculate line points from width and height. */ calcLinePoints: function() { var xMult = this.x1 <= this.x2 ? -1 : 1, diff --git a/src/shapes/line.class.js b/src/shapes/line.class.js index d0982731..32a8ae14 100644 --- a/src/shapes/line.class.js +++ b/src/shapes/line.class.js @@ -206,8 +206,8 @@ }, /** + * Recalculates line points given width and height * @private - * Recalculate line points from width and height. */ calcLinePoints: function() { var xMult = this.x1 <= this.x2 ? -1 : 1,