|
|
@ -63,12 +63,18 @@ jQuery.fn.dataTable.render.ellipsis = function ( cutoff, wordbreak, escapeHtml )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( typeof d !== 'number' && typeof d !== 'string' ) {
|
|
|
|
if ( typeof d !== 'number' && typeof d !== 'string' ) {
|
|
|
|
|
|
|
|
if ( escapeHtml ) {
|
|
|
|
|
|
|
|
return esc( d );
|
|
|
|
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d = d.toString(); // cast numbers
|
|
|
|
d = d.toString(); // cast numbers
|
|
|
|
|
|
|
|
|
|
|
|
if ( d.length <= cutoff ) {
|
|
|
|
if ( d.length <= cutoff ) {
|
|
|
|
|
|
|
|
if ( escapeHtml ) {
|
|
|
|
|
|
|
|
return esc( d );
|
|
|
|
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|