blob: 70077ab3cd048a0644aef3c17b99b01fa85cfe29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<%def name="css()">
<link rel="stylesheet" href="http://assets.annotateit.org/annotator/v1.2.5/annotator.min.css">
</%def>
<%def name="code()">
<script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script>
<script src="http://assets.annotateit.org/annotator/v1.2.7/annotator-full.js"></script>
<script>
jQuery(function ($) {
$('body').annotator().annotator('setupPlugins', {}, {
// Disable filter bar
Filter: false
});
});
</script>
</%def>
|