1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-03-15 16:29:16 +01:00

Dev fix: Sort classes for cells were broken in beta.3-dev

- Commit 515761905c had removed the `_fnSortingClasses` call for a
  client-side processing table without defered rendering.
This commit is contained in:
Allan Jardine 2014-03-07 11:48:08 +00:00
parent 13c766d1de
commit 9dc81c8dd3
2 changed files with 6 additions and 5 deletions

View File

@ -1 +1 @@
2fcf8f180e6627e372656283dc58570191abc762 eceec807732782010bff74c4d068bb13b6a81b50

View File

@ -6122,10 +6122,11 @@
} ); } );
} }
if ( _fnDataSource( oSettings ) === 'ssp' || features.bDeferRender ) { _fnCallbackReg( oSettings, 'aoDrawCallback', function () {
_fnCallbackReg( oSettings, 'aoDrawCallback', _fnSortingClasses, 'sc' ); if ( oSettings.bSorted || _fnDataSource( oSettings ) === 'ssp' || features.bDeferRender ) {
} _fnSortingClasses( oSettings );
}
}, 'sc' );
/* /*