Changes to build environment for windows compatability

This commit is contained in:
knsv
2015-12-26 10:59:44 +01:00
parent ab38e17936
commit 8c8f5928f5
24 changed files with 692 additions and 563 deletions

View File

@@ -19,6 +19,11 @@
function callback2(id){
alert('x'+id);
}
function onNodeClick(nodeId){
alert(nodeId);
}
mermaid.initialize({logLevel:1});
</script>
</head>
@@ -44,5 +49,21 @@
B-->C
click A callback2 "Tooltip3"
</div>
<h1>Issue #272</h1>
<div class="mermaid" id="i213">
graph LR;
A((start))-->B(step1);
B-->C[step2];
C-->D{step3};
D-->E[end];
classDef green fill:#9f6,stroke:#333,stroke-width:1px;
class A,B,C,D,E green;
click B onNodeClick "tooltip"
</div>
</body>
</html>