forked from jsplumb/jsplumb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
31 lines (25 loc) · 961 Bytes
/
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
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" type="image/png" href="{{page.base}}/img/favicon.png">
<title>jsPlumb {{ site.jsplumb }} demo - {{ page.demo }} ({{ page.libraryName }})</title>
{% include css.html %}
<link rel="stylesheet" href="demo.css">
</head>
<body data-demo-id="{{page.demo}}" data-library="{{page.library}}">
{% include header.html %}
{% include pleasebemyfriend.html %}
<div id="main">
{{content}}
</div>
{% assign libimport='' %}
{% capture libimport %}{{page.library}}.jsplumb.html{% endcapture %}
{% include {{libimport}} %}
<script src="demo.js"></script>
<script src="{{page.base}}/js/demo-list.js"></script>
{% include track-jsplumb.html %}
</body>
</html>