1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-11-28 10:24:10 +01:00

Fix: Looser test for IE to pass. Different date format string

This commit is contained in:
Allan Jardine 2010-08-22 16:18:44 +01:00
parent 4fef523262
commit aec4505a8f

View File

@ -68,7 +68,7 @@ $(document).ready( function () {
"bDestroy": true,
"bStateSave": true,
"fnCookieCallback": function (sName, oData, sExpires, sPath) {
mPass = sExpires.match(/GMT/);
mPass = typeof sExpires == 'string';
return sName + "=; expires=" + sExpires +"; path=" + sPath;
}
} );