|
|
@ -50,10 +50,10 @@
|
|
|
|
jQuery.fn.dataTable.render.ellipsis = function ( cutoff, wordbreak, escapeHtml ) {
|
|
|
|
jQuery.fn.dataTable.render.ellipsis = function ( cutoff, wordbreak, escapeHtml ) {
|
|
|
|
var esc = function ( t ) {
|
|
|
|
var esc = function ( t ) {
|
|
|
|
return t
|
|
|
|
return t
|
|
|
|
.replace( /&/, '&' )
|
|
|
|
.replace( /&/g, '&' )
|
|
|
|
.replace( /</, '<' )
|
|
|
|
.replace( /</g, '<' )
|
|
|
|
.replace( />/, '>' )
|
|
|
|
.replace( />/g, '>' )
|
|
|
|
.replace( /"/, '"' );
|
|
|
|
.replace( /"/g, '"' );
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return function ( d, type, row ) {
|
|
|
|
return function ( d, type, row ) {
|
|
|
|