diff options
Diffstat (limited to 'src/gradient.js')
-rw-r--r-- | src/gradient.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gradient.js b/src/gradient.js index 2f6e30a..c5c51d1 100644 --- a/src/gradient.js +++ b/src/gradient.js @@ -46,6 +46,10 @@ SVG.extend(SVG.Gradient, { , fill: function() { return 'url(#' + this.attr('id') + ')' } + // Alias string convertion to fill +, toString: function() { + return this.fill() + } }) |