diff --git a/CHANGELOG.md b/CHANGELOG.md index e35de405..141c1ba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 7.2.2 + * Fix wrong size calculations for `Konva.Line` with tension * Fix `shape.intersects()` behavior when a node is dragged * Fix ellipsis rendering for `Konva.Text` diff --git a/konva.js b/konva.js index 95f3334e..12375e5c 100644 --- a/konva.js +++ b/konva.js @@ -4076,7 +4076,7 @@ * @name Konva.Node#getAbsoluteRotation * @returns {Number} * @example - * // get absolute scale x + * // get absolute rotation * var rotation = node.getAbsoluteRotation(); */ Node.prototype.getAbsoluteRotation = function () { @@ -5234,8 +5234,8 @@ * @example * // get node size * var size = node.size(); - * var x = size.x; - * var y = size.y; + * var width = size.width; + * var height = size.height; * * // set size * node.size({