-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (34 loc) · 1.14 KB
/
index.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
32
33
34
35
36
37
38
39
40
<html>
<head>
<link href="style.css" rel="stylesheet" />
<link href="bootstrap.min.css" rel="stylesheet">
<link href="http://fonts.googleapis.com/css?family=Port+Lligat+Sans" media="screen" rel="stylesheet" type="text/css" />
<title>Markupwand Utils </title>
</head>
<body>
<div class="controls row-fluid">
<div class="span12">
<div class="row-fluid">
<div id="before" class="span4">
Before
<textarea id="before-values"></textarea>
</div>
<div id="swap-wrapper" class="span4">
<button id="swap">Swap and Update</button>
<div id="current-state" data-active='before'></div>
</div>
<div id="after" class="span4">
After
<textarea id="after-values"></textarea>
</div>
</div>
</div>
</div>
<canvas id="board" width="2000" height="2000">
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="jquery.cookie.js"></script>
<script src="main.js"></script>
</body>
</html>