1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-17 15:54:14 +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, "bDestroy": true,
"bStateSave": true, "bStateSave": true,
"fnCookieCallback": function (sName, oData, sExpires, sPath) { "fnCookieCallback": function (sName, oData, sExpires, sPath) {
mPass = sExpires.match(/GMT/); mPass = typeof sExpires == 'string';
return sName + "=; expires=" + sExpires +"; path=" + sPath; return sName + "=; expires=" + sExpires +"; path=" + sPath;
} }
} ); } );