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

Fix: jQUery object will fail as a column selector

- This fixes #2
This commit is contained in:
Allan Jardine 2014-04-14 09:42:34 +01:00
parent f7e9a20324
commit efa8ff5b71
2 changed files with 4 additions and 2 deletions

View File

@ -1 +1 @@
13af055a5864473695ebf1e9b9a719a8c0f5a673
fd6a64289e82e811d542745a632496ded845f90c

View File

@ -7838,7 +7838,9 @@
];
}
else {
var match = s.match( __re_column_selector );
var match = typeof match === 'string' ?
s.match( __re_column_selector ) :
'';
if ( match ) {
switch( match[2] ) {