1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-18 16:54:14 +01:00

Fix: Oops - Committed debug by mistake. Remove...

This commit is contained in:
Allan Jardine 2011-05-18 22:16:28 +01:00
parent 5ca44c8405
commit 55c4e0ac9c

View File

@ -762,7 +762,6 @@
}
}
console.log('numeric');
return 'numeric';
},
@ -777,7 +776,6 @@
var iParse = Date.parse(sData);
if ( (iParse !== null && !isNaN(iParse)) || (typeof sData == 'string' && sData.length === 0) )
{
console.log('date');
return 'date';
}
return null;
@ -793,7 +791,6 @@
{
if ( typeof sData == 'string' && sData.indexOf('<') != -1 && sData.indexOf('>') != -1 )
{
console.log('html');
return 'html';
}
return null;