]> source.dussan.org Git - svg.js.git/commitdiff
updated changelog, fixed typo in doc and removed semicolon
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Fri, 11 Dec 2015 23:52:26 +0000 (00:52 +0100)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Fri, 11 Dec 2015 23:52:26 +0000 (00:52 +0100)
CHANGELOG.md
README.md
dist/svg.js
src/clip.js
src/mask.js

index e60b56942ae132c2ded798d3ea20cf4e70db59d7..cc01b543b2aed008d847ba0333786c1d560da293 100644 (file)
@@ -8,6 +8,12 @@
 - added `precision()` method to round numeric element attributes -> __TODO!__
 - added specs for `SVG.FX` -> __TODO!__
 
+# 2.2.4
+- fixed `transform()` which returns the matrix values (a-f) now, too (#423)
+- double newlines (\n\n) are correctly handled as blank line from `text()`
+- fixed use of scrollX vs pageXOffset in `rbox()` (#425)
+- fixed target array in mask and clip which was removed instead of reinitialized (#429)
 # 2.2.3 (30/11/2015)
 - fixed null check in image (see 2.2.2)
 - fixed bug related to the new path parser (see 2.2.2)
index 0c2da591592e18ef20630fe9ea2a1c77f40edef7..c27af9ceb58309e4d477e04a25ebf8a56cc7d29f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1886,7 +1886,7 @@ This will return an instance of `SVG.RBox` containing the following values:
 - `x2` (lower right `x` of the bounding box)
 - `y2` (lower right `y` of the bounding box)
 
-__Important__: Mozilla browsers include stroke widths where other browsers do not. Therefore the resulting box might be different in Mozulla browsers. It is very hard to modify this behavior so for the time being this is an inconvenience we have to live with.
+__Important__: Mozilla browsers include stroke widths where other browsers do not. Therefore the resulting box might be different in Mozilla browsers. It is very hard to modify this behavior so for the time being this is an inconvenience we have to live with.
 
 __`returns`: `SVG.RBox`__
 
index fa117423dd9d666c37fdb851cc6f10523d97f42f..74adce7d8c28f6c6d501f79eccdaf9a098565724 100644 (file)
@@ -6,7 +6,7 @@
 * @copyright Wout Fierens <wout@impinc.co.uk>
 * @license MIT
 *
-* BUILT: Fri Dec 11 2015 09:19:16 GMT-0600 (Central Standard Time)
+* BUILT: Sat Dec 12 2015 00:50:35 GMT+0100 (Mitteleuropäische Zeit)
 */;
 (function(root, factory) {
   if (typeof define === 'function' && define.amd) {
@@ -2777,7 +2777,7 @@ SVG.Mask = SVG.invent({
       for (var i = this.targets.length - 1; i >= 0; i--)
         if (this.targets[i])
           this.targets[i].unmask()
-      this.targets = [];
+      this.targets = []
 
       // remove mask from parent
       this.parent().removeElement(this)
@@ -2836,7 +2836,7 @@ SVG.ClipPath = SVG.invent({
       for (var i = this.targets.length - 1; i >= 0; i--)
         if (this.targets[i])
           this.targets[i].unclip()
-      this.targets = [];
+      this.targets = []
 
       // remove clipPath from parent
       this.parent().removeElement(this)
index 9b5443e34ba1c311839e68b2e60d27009c052b17..2a92e440cacde7d94adc8788ef43c31ea31dce02 100644 (file)
@@ -18,7 +18,7 @@ SVG.ClipPath = SVG.invent({
       for (var i = this.targets.length - 1; i >= 0; i--)
         if (this.targets[i])
           this.targets[i].unclip()
-      this.targets = [];
+      this.targets = []
 
       // remove clipPath from parent 
       this.parent().removeElement(this)
index 4a6047aab1d7d60162a7dcc48e7cfc44c03ec1b2..51e61e9bae558276f17ad362a241de366e3ccf62 100644 (file)
@@ -18,7 +18,7 @@ SVG.Mask = SVG.invent({
       for (var i = this.targets.length - 1; i >= 0; i--)
         if (this.targets[i])
           this.targets[i].unmask()
-      this.targets = [];
+      this.targets = []
 
       // remove mask from parent 
       this.parent().removeElement(this)