diff --git a/dev/raphael.svg.js b/dev/raphael.svg.js index 727b8d70..31e89379 100644 --- a/dev/raphael.svg.js +++ b/dev/raphael.svg.js @@ -1362,6 +1362,9 @@ define(["./raphael.core"], function(R) { var cnvs = this.canvas, s = cnvs.style, pos; + if(!(cnvs.getScreenCTM || cnvs.createSVGMatrix)){ + return; + } try { pos = cnvs.getScreenCTM() || cnvs.createSVGMatrix(); } catch (e) {