aboutsummaryrefslogtreecommitdiffstats
path: root/src/svg.js
blob: 4f17c926e6f733671901a0ed4f3dd54662a3f526 (plain)
1
2
3
4
5
6
7
8
9
10
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;