-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
51 lines (40 loc) · 1.44 KB
/
example.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" />
<link rel="stylesheet" href="lib/treeview/jquery.treeview.css" />
<link rel="stylesheet" href="src/css/screen.storyq.css" />
<style type="text/css">
#banner {
padding: 15px;
background-color: #06b;
color: white;
font-size: large;
border-bottom: 1px solid #ccc;
background: url(src/images/bg.gif) repeat-x;
text-align: center
}
#banner a {
color: white;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>
<script src="lib/treeview/jquery.treeview.js" type="text/javascript"></script>
<script src="src/storyq.js" type="text/javascript"></script>
</head>
<body>
<h1 id="banner">Sample page - StoryQ Run Results</h1>
<p>This page displays your sample plugin based on the packed version at build/storyq.js</p>
<p>If you get errors, make sure that you have compiled the plugin first</p>
<pre>rake compile</pre>
<div id="results"/>
<script type="text/javascript">
$(function(){
$('#results').storyq({
url: 'test/data/results-01.xml'
});
})
</script>
</body>
</html>