Add export to CSV option in annotation results

This commit is contained in:
Karol Kaczmarek 2020-07-11 15:42:26 +02:00
parent 2847a3bc52
commit 8bcb8b6992

View File

@ -0,0 +1,11 @@
$(document).ready(function() {
$("table").DataTable({
'pageLength': 50,
'dom': 'Bfrtlip',
'buttons': [
'copy',
'csv',
'excel'
]
})
});