#1261 Removed calls to console.log

This commit is contained in:
Knut Sveidqvist
2020-02-21 09:50:04 +01:00
parent 3acff54837
commit 89c1853977
4 changed files with 0 additions and 12 deletions

View File

@@ -533,7 +533,6 @@ const render = function(id, _txt, cb, container) {
// classDef
if (graphType === 'flowchart') {
const classes = flowRenderer.getClasses(txt);
console.log('classes in mermaidApi', classes);
for (const className in classes) {
style += `\n.${className} > * { ${classes[className].styles.join(
' !important; '
@@ -544,7 +543,6 @@ const render = function(id, _txt, cb, container) {
)} !important; }`;
}
}
console.log(style);
}
const style1 = document.createElement('style');