summaryrefslogtreecommitdiffstats
path: root/src/clip.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-07-04 10:02:01 +0100
committerwout <wout@impinc.co.uk>2013-07-04 10:02:01 +0100
commit794f0defea662d94df8880e1e111e47de9f81621 (patch)
treed155c2e6ea694b53542e87fd0828f38c9e41ff9b /src/clip.js
parentdfa7123fb64bc13d2ce37b7f3e3be92db7f7fef8 (diff)
downloadsvg.js-794f0defea662d94df8880e1e111e47de9f81621.tar.gz
svg.js-794f0defea662d94df8880e1e111e47de9f81621.zip
Various IE9 and IE10 fixes
Diffstat (limited to 'src/clip.js')
-rw-r--r--src/clip.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clip.js b/src/clip.js
index 2b4afce..54f9d37 100644
--- a/src/clip.js
+++ b/src/clip.js
@@ -36,7 +36,7 @@ SVG.extend(SVG.Element, {
this.clipper.targets.push(this)
/* apply mask */
- return this.attr('clip-path', 'url(#' + this.clipper.attr('id') + ')')
+ return this.attr('clip-path', 'url("#' + this.clipper.attr('id') + '")')
}
// Unclip element
, unclip: function() {