revert to http

This commit is contained in:
nothingismagick 2019-09-23 12:06:22 +02:00 committed by GitHub
parent 4f218435e3
commit 6c243488fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -426,7 +426,7 @@ const render = function(id, txt, cb, container) {
.append('svg')
.attr('id', id)
.attr('width', '100%')
.attr('xmlns', 'https://www.w3.org/2000/svg')
.attr('xmlns', 'http://www.w3.org/2000/svg')
.append('g');
} else {
const element = document.querySelector('#' + 'd' + id);
@ -440,7 +440,7 @@ const render = function(id, txt, cb, container) {
.append('svg')
.attr('id', id)
.attr('width', '100%')
.attr('xmlns', 'https://www.w3.org/2000/svg')
.attr('xmlns', 'http://www.w3.org/2000/svg')
.append('g');
}
@ -535,7 +535,7 @@ const render = function(id, txt, cb, container) {
d3.select(`[id="${id}"]`)
.selectAll('foreignobject > *')
.attr('xmlns', 'https://www.w3.org/1999/xhtml');
.attr('xmlns', 'http://www.w3.org/1999/xhtml');
let url = '';
if (config.arrowMarkerAbsolute) {