forked from Kerry350/Forger.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (33 loc) · 761 Bytes
/
index.html
File metadata and controls
42 lines (33 loc) · 761 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
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pibble.js Test Page</title>
<link rel="stylesheet" href="pibble.css">
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.1/css/font-awesome.min.css">-->
</head>
<body>
<div id="container">
<div id="test">
<p>Dog</p>
<p>
<ul>
<li>Cat​<br></li>
<li>Tiger</li>
</ul>
<div>Walrus</div>
<div><br></div>
<div>Donkey</div>
</p>
</div>
<div id="demo" contenteditable="true">
<p>Text here</p>
</div>
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.js"></script>
<script src="pibble.js"></script>
<script>
$('#test').Pibble();
</script>
</body>
</html>