mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 18:46:08 +08:00
update CHANGELOG with new version
This commit is contained in:
parent
b085ece741
commit
8327371bd6
@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [new version][unreleased]
|
||||
|
||||
## [2.5.1][2018-11-08]
|
||||
|
||||
### Changed
|
||||
|
||||
* Use custom functions for `trimRight` and `trimLeft` (for better browsers support)
|
||||
|
4
konva.js
4
konva.js
@ -1025,10 +1025,10 @@
|
||||
return retObj;
|
||||
},
|
||||
trimRight: function(str) {
|
||||
return str.replace(/\s+$/, "");
|
||||
return str.replace(/\s+$/, '');
|
||||
},
|
||||
trimLeft: function(str) {
|
||||
return str.replace(/^\s+/, "");
|
||||
return str.replace(/^\s+/, '');
|
||||
},
|
||||
/**
|
||||
* check intersection of two client rectangles
|
||||
|
@ -765,10 +765,10 @@
|
||||
return retObj;
|
||||
},
|
||||
trimRight: function(str) {
|
||||
return str.replace(/\s+$/, "");
|
||||
return str.replace(/\s+$/, '');
|
||||
},
|
||||
trimLeft: function(str) {
|
||||
return str.replace(/^\s+/, "");
|
||||
return str.replace(/^\s+/, '');
|
||||
},
|
||||
/**
|
||||
* check intersection of two client rectangles
|
||||
|
Loading…
Reference in New Issue
Block a user