mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
fixes hound
This commit is contained in:
parent
efa7a1d7b5
commit
f4345f3aef
1 changed files with 4 additions and 4 deletions
|
@ -47,10 +47,10 @@ table = $("#samples").DataTable({
|
|||
sWidth: "1%"
|
||||
}, {
|
||||
targets: 2,
|
||||
render: function ( data, type, row, full, meta ) {
|
||||
return '<a href="#" data-href="' + row.sampleUpdateUrl + '"' +
|
||||
'class="sample_info" data-toggle="modal"' +
|
||||
'data-target="#modal-info-sample">'+data+'</a>';
|
||||
render: function (data, type, row) {
|
||||
return "<a href='#' data-href='"+ row.sampleUpdateUrl +"'"+
|
||||
"class='sample_info' data-toggle='modal'" +
|
||||
"data-target='#modal-info-sample'>"+ data +"</a>";
|
||||
}
|
||||
}],
|
||||
rowCallback: function(row, data, dataIndex){
|
||||
|
|
Loading…
Reference in a new issue