mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-20 15:59:51 +02:00
#1261 Removed calls to console.log
This commit is contained in:
@@ -269,9 +269,6 @@ export const draw = function(text, id) {
|
||||
logger.debug('Parsing failed');
|
||||
}
|
||||
|
||||
console.log('Classes:', flowDb.getClasses());
|
||||
console.log('Subgraphs:', flowDb.getSubGraphs());
|
||||
|
||||
// Fetch the default direction, use TD if none was found
|
||||
let dir = flowDb.getDirection();
|
||||
if (typeof dir === 'undefined') {
|
||||
@@ -420,7 +417,6 @@ export const draw = function(text, id) {
|
||||
te.attr('transform', `translate(${xPos + width / 2}, ${yPos + 14})`);
|
||||
te.attr('id', id + 'Text');
|
||||
|
||||
console.log('Fixing subgraph', id, subG.id, subG.classes); // eslitn-disable-line
|
||||
for (let j = 0; j < subG.classes.length; j++) {
|
||||
clusterEl[0].classList.add(subG.classes[j]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user