mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-07 01:26:42 +02:00
Changes to build environment for windows compatability
This commit is contained in:
@@ -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>
|
||||
|
Reference in New Issue
Block a user