diff options
author | wout <wout@impinc.co.uk> | 2013-01-27 20:17:17 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-01-27 20:17:17 +0100 |
commit | fe1747c86d0e562853752ac2b412ed33cd109c4f (patch) | |
tree | ec56684826ca2053ab78d8ef7a29f0f1f1f1f6ae /src/element.js | |
parent | b72373cf2fc024714825da95c59879ce9cbb4521 (diff) | |
download | svg.js-fe1747c86d0e562853752ac2b412ed33cd109c4f.tar.gz svg.js-fe1747c86d0e562853752ac2b412ed33cd109c4f.zip |
Added data() method
Diffstat (limited to 'src/element.js')
-rw-r--r-- | src/element.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/element.js b/src/element.js index c23ea49..3130d73 100644 --- a/src/element.js +++ b/src/element.js @@ -201,6 +201,20 @@ SVG.extend(SVG.Element, { /* add only te required transformations */ return this.attr('transform', transform.join(' ')); }, + // Store data values on svg nodes + data: function(a, v) { + if (arguments.length < 2) { + var value = this.attr('data-' + a); + return value ? JSON.parse(value) : value; + + } else { + v === null ? + this.node.removeAttribute('data-' + a) : + this.attr('data-' + a, JSON.stringify(v)); + } + + return this; + }, // Get bounding box bbox: function() { /* actual, native bounding box */ |