Fix javascript console errors

1. Add necessary closing bits to the doc ready function.
2. Update to current version of DataTables css and js.
This commit is contained in:
George Hartzell 2017-02-14 09:32:00 -08:00
parent 06dc9e0e25
commit ec98b67b6f

View File

@ -39,16 +39,16 @@
})
</script>
{% if page.datatable == true %}
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.5/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.5/js/jquery.dataTables.js"></script>
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.js"></script>
<script>
$(document).ready(function(){
$('table.datatable').DataTable( {
paging: false,
stateSave: true
}
);
});
</script>
{% endif %}
@ -77,4 +77,4 @@
{% if site.google_analytics %}
{% include google_analytics.html %}
{% endif %}
</html>
</html>