From bce9dbe3d7008736eeadaf04efa2ae428258506e Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 5 Jul 2012 14:33:13 +0800 Subject: [PATCH] raphael.core.js --- raphael.core.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/raphael.core.js b/raphael.core.js index 524f7b8..8344f14 100644 --- a/raphael.core.js +++ b/raphael.core.js @@ -5,6 +5,7 @@ // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │ \\ // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\ // └─────────────────────────────────────────────────────────────────────┘ \\ + (function () { /*\ * Raphael @@ -305,7 +306,8 @@ ** * Can be “SVG”, “VML” or empty, depending on browser support. \*/ - R.type = (g.win.SVGAngle || g.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1") ? "SVG" : "VML"); + R.type = (g.win.SVGAngle || + g.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1") ? "SVG" : "VML"); if (R.type == "VML") { var d = g.doc.createElement("div"), b; -- 2.39.2