1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-18 11:52:11 +01:00

Fixed (from last commit): Incorrect variable when saving state caused state saving to stop working

Fixed: Removed unnecessary white space from state saving cookies
This commit is contained in:
Allan Jardine 2010-08-20 18:58:25 +01:00
parent 85b923cff3
commit 05995bd655

View File

@ -5686,7 +5686,7 @@
try
{
oData = (typeof $.parseJSON == 'function') ?
$.parseJSON( oData.replace(/'/g, '"') ) : eval( '('+sData+')' );
$.parseJSON( sData.replace(/'/g, '"') ) : eval( '('+sData+')' );
}
catch( e )
{