-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle-01-a.html
57 lines (51 loc) · 1.68 KB
/
single-01-a.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=620" />
<title>Summarization Viewer</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/theme/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="css/theme/jquery.ui.slider.css" />
<link rel="stylesheet" type="text/css" href="css/layout.css" />
<link rel="stylesheet" type="text/css" href="css/summary-01.css" />
<script src='js/jquery.min.js'></script>
<script src='js/jquery-ui.js'></script>
<script src='js/jquery.ui.mouse.js'></script>
<script src='js/jquery.ui.slider.js'></script>
<script src='js/jquery.layout.js'></script>
<!-- script src='js/jquery.scrollTo.js'></script -->
<script src='js/jquery.summary-01.js'></script>
</head>
<body>
<div class='article-pane ui-layout-center'>
<article id='article'></article>
</div>
<div class='control-pane ui-layout-east'>
<div class='controls ui-layout-north'>
<label for="threshold">Threshold range:</label>
<input name="threshold" type="text" />
</div>
<ul class='list ui-layout-center'></ul>
</div>
</body>
<script>
(function($) {
$('body').layout({
east: { size: 400, minSize: 250, maxSize: 800 }
});
$('.ui-layout-east').layout({
north: {
size: 65,
resizable: false,
closable: false
}
});
$('#article').summary({
//src: 'http://www.wired.com/wiredscience/2011/07/the-selfishness-of-trust/',
//src: 'samples/0001.html',
metadata: 'samples/0001.xml'
});
}(jQuery));
</script>
</html>