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

Dev: Fix error in the mapping update

This commit is contained in:
Allan Jardine 2013-06-25 11:39:31 +01:00
parent b7bbe0e1ff
commit 07f0a51ca8

View File

@ -64,7 +64,7 @@ function _fnMap( ret, src, name, mappedName )
_fnMap( ret, src, val[0], val[1] ); _fnMap( ret, src, val[0], val[1] );
} }
else { else {
_fnMap( ret, src, val[0] ); _fnMap( ret, src, val );
} }
} ); } );