Add trailing slashes to svg related namespaces (xmlns, xlink)

This commit is contained in:
aschmi 2016-02-18 16:08:12 +01:00
parent a4757b37de
commit 49104c5cf0

View file

@ -18,8 +18,8 @@
var SvgElement = new function() {
// SVG related namespaces
var svg = 'http://www.w3.org/2000/svg',
xmlns = 'http://www.w3.org/2000/xmlns',
xlink = 'http://www.w3.org/1999/xlink',
xmlns = 'http://www.w3.org/2000/xmlns/',
xlink = 'http://www.w3.org/1999/xlink/',
// Mapping of attribute names to required namespaces:
attributeNamespace = {
href: xlink,