Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (36 loc) · 809 Bytes

File metadata and controls

36 lines (36 loc) · 809 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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>
<meta charset="utf-8">
<script src="lib/jquery-3.5.0.min.js"></script>
<script src="flowgorithm.js?016"></script>
<script>
var config = {
itMode: 2
};
var url1 = 'fprg/max3numbers.fprg';
var url2 = '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>
<div class="f">
<div id="f1"></div>
<div id="xml1"></div>
</div>
<div class="f">
<div id="f2"></div>
<div id="xml2"></div>
</div>
</body>
</html>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.