Error in web page code

Error in web page code

StephaneStephane Posts: 1Questions: 0Answers: 0
edited December 2012 in Bug reports
Hi,

There is an error in html code in page: http://datatables.net/release-datatables/extras/TableTools/pdf_message.html

Missing "," before "print" in the original code.

Best regards,

[code]
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
"copy",
"csv",
"xls",
{
"sExtends": "pdf",
"sPdfOrientation": "landscape",
"sPdfMessage": "Your custom message would go here."
}, <---- MISSING "," HERE IN ORIGINAL CODE
"print"
]
}
} );
} );
[/code]
This discussion has been closed.