diff options
Diffstat (limited to 'dist/svg.js')
-rwxr-xr-x | dist/svg.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dist/svg.js b/dist/svg.js index 088fc18..8aa70d3 100755 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@impinc.co.uk> * @license MIT * -* BUILT: Wed Sep 03 2014 15:23:40 GMT+0200 (CEST) +* BUILT: Wed Sep 03 2014 15:38:51 GMT+0200 (CEST) */; (function(root, factory) { @@ -774,7 +774,7 @@ SVG.Number = SVG.invent({ } else { if (value instanceof SVG.Number) { - this.value = value.value + this.value = value.valueOf() this.unit = value.unit } } @@ -814,10 +814,12 @@ SVG.Number = SVG.invent({ } // Convert to different unit , to: function(unit) { + var number = new SVG.Number(this) + if (typeof unit === 'string') - this.unit = unit + number.unit = unit - return this + return number } // Make number morphable , morph: function(number) { |