Add multiple files to meetings
Site-wide custom HTML before </head>
<script type='text/javascript'>
// Written by Mac to display all attachments on homepage meetings
$(document).ready(function() {
$(".board-meetings .poc-instance").each(function(k, e) {
var url = $(e).find("a").attr('href');
$(this).find(".attachments").load(url + " .attachments", function() {
$("ul.attachments > ul.attachments").unwrap();
});
});
});
</script>