BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
function sortDateComparer(a, b) { a = new Date(a); b = new Date(b); return a > b ? -1 : a < b ? 1 : 0; }
function sortDateComparer(a, b) {
a = new Date(a);
b = new Date(b);
return a > b ? 1 : a < b ? -1 : 0;
}
|
|
|