- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdrawWeb.html
More file actions
Latest commit
36 lines (36 loc) · 809 Bytes
/
Copy pathdrawWeb.html
File metadata and controls
36 lines (36 loc) · 809 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
26
27
28
29
30
31
32
33
34
35
36
<!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>
varconfig={
itMode: 2
};
varurl1='fprg/max3numbers.fprg';
varurl2='fprg/next.fprg';
$(function(){
drawFlowchartFromUrl(url1,'#f1',config);
drawFlowchartFromUrl(url2,'#f2',config);
//$('#xml1').load(url1);
});
</script>
<style>
h1{font-size:1.2em}
div.f{width:49%;float:left;position:relative}
</style>
</head>
<body>
<h1>FlowgorithmJS - Example of use</h1>
<divclass="f">
<divid="f1"></div>
<divid="xml1"></div>
</div>
<divclass="f">
<divid="f2"></div>
<divid="xml2"></div>
</div>
</body>
</html>