mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 14:20:23 +08:00
update CHANGELOG with new version
This commit is contained in:
parent
32f5a877f6
commit
7428433217
@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## Not released:
|
||||
|
||||
## 4.0.10 - 2019-09-10
|
||||
|
||||
* Fix drag position handling
|
||||
* Fix multiple selector for find() method
|
||||
|
||||
|
4
konva.js
4
konva.js
@ -1669,8 +1669,8 @@
|
||||
* @method
|
||||
* @name Konva.Context#arcTo
|
||||
*/
|
||||
Context.prototype.arcTo = function (a0, a1, a2, a3, a4, a5) {
|
||||
this._context.arc(a0, a1, a2, a3, a4, a5);
|
||||
Context.prototype.arcTo = function (a0, a1, a2, a3, a4) {
|
||||
this._context.arcTo(a0, a1, a2, a3, a4);
|
||||
};
|
||||
/**
|
||||
* beginPath function.
|
||||
|
2
konva.min.js
vendored
2
konva.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user