1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-18 16:54:14 +01:00

Dev - Build latest changes

This commit is contained in:
Allan Jardine 2012-10-26 08:04:14 +01:00
parent e89958cb45
commit 8eb8c90627

View File

@ -10315,14 +10315,13 @@
* // Use as a function to create a link from the data source * // Use as a function to create a link from the data source
* $(document).ready( function() { * $(document).ready( function() {
* $('#example').dataTable( { * $('#example').dataTable( {
* "columnDefs": [ * "columnDefs": [ {
* {
* "targets": [ 0 ], * "targets": [ 0 ],
* "data": "download_link", * "data": "download_link",
* "render": function ( data, type, full ) { * "render": function ( data, type, full ) {
* return '<a href="'+data+'">Download</a>'; * return '<a href="'+data+'">Download</a>';
* } * }
* ] * } ]
* } ); * } );
* } ); * } );
*/ */