aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-11-24 11:17:13 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-11-24 11:17:13 +0100
commit858f19e9f8b9ba26eee8d3aeb8ba8b5b5058472b (patch)
treefa0c355901bf93e6dc418a759f06ab7899e0452a /CHANGELOG.md
parent8555e13b252f07f8079b08c0b29f4399d389b1e0 (diff)
downloadsvg.js-858f19e9f8b9ba26eee8d3aeb8ba8b5b5058472b.tar.gz
svg.js-858f19e9f8b9ba26eee8d3aeb8ba8b5b5058472b.zip
Get rid of HTMLNode and Bare in favor of Dom
- words() and element() added to Dom - svg() now returns the _parent_ of the imported element, when outerHTML is true (which means an element gets replaces)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9eeba9b..ceb62a2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- added possibility to pass attributes into a constructor like: `new SVG.Rect({width:100})`
- added possibility to pass in additional attribues to element creators e.g. `canvas.rect({x:100})` or `canvas.rect(100, 100, {x:100})` (#796)
- added `SVG.List` (#645)
+- added `words()` and `element()` to `Dom` because of (#935)
### Removed
- removed `SVG.Array.split()` function
@@ -42,6 +43,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- removed `size()` from `SVG.Text` to avoid name clash (#799)
- removed `move(), dmove()` etc for groups to avoid inconsistencies, we will expect users to use transforms to move around groups as they should (especially since they are much simpler now).
- removed `native()` function
+- removed `Bare` in favour of `Dom` (#935)
### Changed
- gradients now have there corresponding node as type and not only radial/linear