-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
26 lines (26 loc) · 1.24 KB
/
demo.html
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
<html>
<body>
<p>JSPlumb Demo</p>
<p>Click on the coloured background text of each box to drag and the 'New' text to drag and drop connections.</p>
<div id='drawing-area'>
<div id='tenant-1' class='element draggable resizable' style='left: 10px; top: 10px'>
<span>Tenant 1</span>
<div class='connector-source'>New</div>
</div>
<div id='tenant-2' class='element draggable resizable' style='left: 300px; top: 50px'>
<span>Tenant 2</span>
<div class='connector-source'>New</div>
</div>
<div id='tenant-3' class='element draggable resizable' style='left: 50px; top: 300px'>
<span>Tenant 3</span>
<div class='connector-source'>New</div>
</div>
</div>
<link rel='stylesheet' href='./jquery-ui-1.8.18.custom.css' />
<link rel='stylesheet' href='./demo.css' />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript" src="./jquery.jsPlumb-1.3.8-all-min.js "></script>
<script type="text/javascript" src="./demo.js "></script>
</body>
</html>