Merge pull request #298 from LarryKlugerDS/master

Issue 297 - src/mermaid.js generates bad code
This commit is contained in:
Knut Sveidqvist 2016-02-10 07:22:17 +01:00
commit 193ee657e6

View File

@ -67,8 +67,7 @@ var init = function () {
nodes = nodes === undefined ? document.querySelectorAll('.mermaid')
: typeof nodes === 'string' ? document.querySelectorAll(nodes)
: nodes instanceof Node ? [nodes]
/*! Last case - sequence config was passed pick next */
: nodes;
: nodes; // Last case - sequence config was passed pick next
var i;