We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ab3e2 commit b23db3eCopy full SHA for b23db3e
deploy/shard.js
@@ -645,6 +645,8 @@ SHARD.CanvasRenderer.prototype.render = function(scene) {
645
SHARD.SVGRenderer = function() {
646
SHARD.Renderer.call(this);
647
this.element = document.createElementNS(SHARD.SVGNS, 'svg');
648
+ this.element.setAttribute('xmlns', SHARD.SVGNS);
649
+ this.element.setAttribute('version', '1.1');
650
this.element.style.display = 'block';
651
this.setSize(300, 150);
652
};
0 commit comments