-
Notifications
You must be signed in to change notification settings - Fork 0
/
pavlof_ecoraid_listing.html
91 lines (67 loc) · 1.97 KB
/
pavlof_ecoraid_listing.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery File Tree Demo</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style type="text/css">
BODY,
HTML {
padding: 0px;
margin: 0px;
}
BODY {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
background: #EEE;
padding: 15px;
}
H1 {
font-family: Georgia, serif;
font-size: 20px;
font-weight: normal;
}
H2 {
font-family: Georgia, serif;
font-size: 16px;
font-weight: normal;
margin: 0px 0px 10px 0px;
}
.example {
float: left;
margin: 15px;
}
.demo {
width: 600px;
height: 800px;
border-top: solid 1px #BBB;
border-left: solid 1px #BBB;
border-bottom: solid 1px #FFF;
border-right: solid 1px #FFF;
background: #FFF;
overflow: scroll;
padding: 5px;
}
</style>
<script src="scripts/jquery.fileTree-1.01/jquery.js" type="text/javascript"></script>
<script src="scripts/jquery.fileTree-1.01/jquery.easing.js" type="text/javascript"></script>
<script src="scripts/jquery.fileTree-1.01/jqueryFileTree.js" type="text/javascript"></script>
<link href="scripts/jquery.fileTree-1.01/jqueryFileTree.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript">
$(document).ready( function() {
$('#fileTreeDemo_1').fileTree({ root: '', script: 'scripts/jquery.fileTree-1.01/connectors/jqueryFileTree.php' }, function(file) {
alert(file);
});
});
</script>
</head>
<body>
<h1>Ecoraid Data Structure Viewer</h1>
<div class="example">
<h2>Default options</h2>
<div id="fileTreeDemo_1" class="demo"></div>
</div>
<p>
Code From: <a href="http://abeautifulsite.net/2008/03/jquery-file-tree/">abeautifulsite.net</a>
</p>
</body>
</html>