aboutsummaryrefslogtreecommitdiffstats
path: root/src/svg.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/svg.js')
-rw-r--r--src/svg.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/svg.js b/src/svg.js
index e69de29..4f17c92 100644
--- a/src/svg.js
+++ b/src/svg.js
@@ -0,0 +1,11 @@
+
+var SVG = {
+ namespace: "http://www.w3.org/2000/svg",
+ xlink: "http://www.w3.org/1999/xlink",
+
+ createElement: function(e) {
+ return document.createElementNS(this.namespace, e);
+ }
+};
+
+this.SVG = SVG; \ No newline at end of file