summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-02-27 12:25:12 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2018-02-27 12:25:12 +0100
commitdf253288a88b1c469a0d789a91a0b5c51eda71c0 (patch)
treecd7bdcbd6e92bda9e5bb0a07a6e69464fa64bc73 /CHANGELOG.md
parentec628ee93ddc2c16929f0f275068b6585ab18e77 (diff)
downloadsvg.js-df253288a88b1c469a0d789a91a0b5c51eda71c0.tar.gz
svg.js-df253288a88b1c469a0d789a91a0b5c51eda71c0.zip
updated changelog
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ebbc678..b1863f8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- added `SVG.$()` and `SVG.$$()` which will query for one/multiple elements
- added `text()` method to `SVG.Path` to create a textPath from this path (#705)
- added `SVG.HTMLNode` which is the object wrapped around html nodes to put something in them
+- added `dispatch()` method on `SVG.Element` which returns the dispatched event for event cancelation (#550)
- added `random` option and `randomize()` method to `SVG.Color` -> __TODO!__
- added `precision()` method to round numeric element attributes -> __TODO!__
@@ -58,7 +59,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http:
- default constructor now has an optional `node` argument which is used to consruct the object e.g. `new SVG.Rect(rectNode)`
- SVG.Elements constructor now tries to import svgjs:data from the node
- `SVG.on()` calls the listener in the context of the passed object. el.on always uses the svg.js object as context
-- `SVG.on()` and `el.on()` now accepts multiple comma or space seperated events e.g. "mousedown, foo bar" (#727)
+- `SVG.on()/off()` and `el.on()/off()` now accepts multiple comma or space seperated events e.g. "mousedown, foo bar" (#727)
### Fixed
- fixed a bug in clipping and masking where empty nodes persists after removal -> __TODO!__