From afc50961abe4684125d80ccb98b6554aa69c81b1 Mon Sep 17 00:00:00 2001 From: physikerwelt Date: Sun, 13 Oct 2013 14:42:36 +0000 Subject: [PATCH] Fix: Add missing xmlns Change-Id: Id7c92982a914ec26990556662ba971483e58f934 --- mathoid/engine.js | 1 + 1 file changed, 1 insertion(+) diff --git a/mathoid/engine.js b/mathoid/engine.js index 995bd8e..2b1bb8c 100644 --- a/mathoid/engine.js +++ b/mathoid/engine.js @@ -92,6 +92,7 @@ window.engine = (new (function() { } svg.style.position = 'static'; + svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg'); tmpDiv = document.createElement('div'); tmpDiv.appendChild(svg); svg.insertBefore(defs, svg.firstChild);