/
home
/
techb158
/
immovalet.ca
/
bower_components
/
datatables
/
media
/
src
/
ext
/
/home/techb158/immovalet.ca/bower_components/datatables/media/src/ext
mkdir
upload
Name
Size
Mode
Actions
ext.classes.js
4050
0666
edit
dl
rm
ext.paging.js
9111
0666
edit
dl
rm
ext.sorting.js
1312
0666
edit
dl
rm
ext.types.js
1859
0666
edit
dl
rm
Edit:
/home/techb158/immovalet.ca/bower_components/datatables/media/src/ext/ext.sorting.js
(1312B)
$.extend( DataTable.ext.oSort, { /* * text sorting */ "string-pre": function ( a ) { if ( typeof a != 'string' ) { a = (a !== null && a.toString) ? a.toString() : ''; } return a.toLowerCase(); }, "string-asc": function ( x, y ) { return ((x < y) ? -1 : ((x > y) ? 1 : 0)); }, "string-desc": function ( x, y ) { return ((x < y) ? 1 : ((x > y) ? -1 : 0)); }, /* * html sorting (ignore html tags) */ "html-pre": function ( a ) { return a.replace( /<.*?>/g, "" ).toLowerCase(); }, "html-asc": function ( x, y ) { return ((x < y) ? -1 : ((x > y) ? 1 : 0)); }, "html-desc": function ( x, y ) { return ((x < y) ? 1 : ((x > y) ? -1 : 0)); }, /* * date sorting */ "date-pre": function ( a ) { var x = Date.parse( a ); if ( isNaN(x) || x==="" ) { x = Date.parse( "01/01/1970 00:00:00" ); } return x; }, "date-asc": function ( x, y ) { return x - y; }, "date-desc": function ( x, y ) { return y - x; }, /* * numerical sorting */ "numeric-pre": function ( a ) { return (a=="-" || a==="") ? 0 : a*1; }, "numeric-asc": function ( x, y ) { return x - y; }, "numeric-desc": function ( x, y ) { return y - x; } } );
Save
cmd:
run