We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(initially posted on SO, and the answer pointed me to the right direction)
I tried to run in Chrome (v48) the example from the site (a working copy is on codepen.io):
<script src="https://cdn.rawgit.com/knsv/mermaid/0.5.1/dist/mermaid.min.js"></script> <script>mermaid.initialize({startOnLoad:true});</script> <div class="mermaid"> graph TD; A-->B; A-->C; B-->D; C-->D; </div>
The output is:
The same code runs fine in Firefox.
A sequence diagram works great on both Chrome and Firefox.
I think this is a bug/incompatibility issue.
The text was updated successfully, but these errors were encountered:
Same as #281
Changing the source to
<script src="https://cdn.rawgit.com/knsv/mermaid/master/dist/mermaid.min.js"></script> <link rel="stylesheet" href="https://cdn.rawgit.com/knsv/mermaid/master/dist/mermaid.css">
solved the issue.
Sorry, something went wrong.
Update head.html
7395a73
<!-- mermaid-js/mermaid#290 -->
Merge pull request mermaid-js#290 from mermaid-js/develop
f50d202
Develop
No branches or pull requests
(initially posted on SO, and the answer pointed me to the right direction)
I tried to run in Chrome (v48) the example from the site (a working copy is on codepen.io):
The output is:
The same code runs fine in Firefox.
A sequence diagram works great on both Chrome and Firefox.
I think this is a bug/incompatibility issue.
The text was updated successfully, but these errors were encountered: