diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-04-22 22:16:36 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-04-22 22:16:36 +0200 |
commit | ab1c07e80bd21f2cdf773be238d4dd754db4e80a (patch) | |
tree | b1386635a4e54f29eee8cfa41151fd930610c25e /CHANGELOG.md | |
parent | 03d25548fe99c87ed74e789b894e37a7fc6caf34 (diff) | |
download | svg.js-ab1c07e80bd21f2cdf773be238d4dd754db4e80a.tar.gz svg.js-ab1c07e80bd21f2cdf773be238d4dd754db4e80a.zip |
changed `style()` to `css()`
it now accepts array as input and returns object when no argument given (#517)
also removed sub-pixel offset fix
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b1570fe..fc595a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http: - removed `SVG.Set` - removed feature to set style with css string (e.g. "fill:none;display:block;") - removed `loaded()` and `error()` method on `SVG.Image` +- removed sub-pixel offset fix ### Changed - gradients now have there corresponding node as type and not only radial/linear @@ -35,6 +36,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http: - moved all regexes to `SVG.regex` - `svg()` will now return the element without svg-wrapper - new constructor signature for `SVG.Image` and `load()`: `container.image(src, callback) / image.load(src, callback)` +- changed `style()` to `css()`. Now accepts array as input and returns object when no argument given (#517) ### Fixed - fixed a bug in clipping and masking where empty nodes persists after removal -> __TODO!__ |