annotation_helper.tmpl 519 B

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