- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathallElements.html
More file actions
Latest commit
25 lines (25 loc) · 509 Bytes
/
Copy pathallElements.html
File metadata and controls
25 lines (25 loc) · 509 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>FlowgorithmJS offline</title>
<metacharset="utf-8">
<scriptsrc="lib/jquery-3.5.0.min.js"></script>
<scriptsrc="flowgorithm.js?016"></script>
<script>
varurl1='fprg/_elements.fprg';
$(function(){
drawFlowchartFromUrl(url1,'#f1');
});
</script>
<style>
h1{font-size:1.2em}
</style>
</head>
<body>
<h1>FlowgorithmJS - Example of use</h1>
<divclass="f">
<divid="f1"></div>
<divid="xml1"></div>
</div>
</body>
</html>