Mercurial > hg > webaudioevaluationtool
changeset 2964:7bbab5127538
Merge pull request #261 from othiman/positionfix
Remove position tag from test page of MUSHAR template (itur1534) to p…
author | Nick Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 09 Jan 2018 16:09:49 +0000 |
parents | 292c0bd8d87d (diff) 8881dbe2807e (current diff) |
children | 31a7a34bad6b 2fe3caf84422 |
files | |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/test_create/test_core.js Thu Nov 23 15:51:26 2017 +0100 +++ b/test_create/test_core.js Tue Jan 09 16:09:49 2018 +0000 @@ -114,9 +114,9 @@ $s.exportXML = function () { var s = new XMLSerializer(); - var doc = "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>" + specification.encode(); + var doc = specification.encode(); var xmlstr = s.serializeToString(doc); - var bb = new Blob([s.serializeToString(doc)], { + var bb = new Blob(["<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>" + s.serializeToString(doc)], { type: 'application/xml' }); var dnlk = window.URL.createObjectURL(bb);