-
Notifications
You must be signed in to change notification settings - Fork 3
/
search_embed.html
29 lines (27 loc) · 1.06 KB
/
search_embed.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
<!DOCTYPE html>
<html>
<head>
<script src="javascripts/vendor/jquery-1.8.2.js" type="text/javascript"></script>
<script src="javascripts/vendor/underscore-1.4.2.js" type="text/javascript"></script>
<script src="javascripts/vendor/backbone-0.9.2.js" type="text/javascript"></script>
<script src="javascripts/lib/inflector.js" type="text/javascript"></script>
<script src="javascripts/search_embed.js" type="text/javascript"></script>
<script src="public/assets/templates.js" type="text/javascript"></script>
<link href="stylesheets/search_embed.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container"></div>
<script>
dc.embed.load('http://www.documentcloud.org/search/embed/', {
q: "projectid: 4478-2012advault",
container: "#container",
title: "",
order: "score",
per_page: 12,
search_bar: true,
organization: 1,
click: function(e, view) { alert("clicked!"); console.log(e); return false; }
});
</script>
</body>
</html>