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

Dev fix: ext.order is an object not an array

Dev fix: `ext.order` wasn't being aliased back to afnSortData correctly
This commit is contained in:
Allan Jardine 2013-12-28 11:22:49 +00:00
parent dc0fffa316
commit e699f8b510
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
67966e5b14927fa57bd3aedf7bc9c1c724b909d3 e36896eb799e0f3f1173ce3558bca8a8d222a08f

View File

@ -13122,7 +13122,7 @@
* } ); * } );
* } * }
*/ */
order: [], order: {},
/** /**
@ -13337,7 +13337,7 @@
aTypes: _ext.type.detect, aTypes: _ext.type.detect,
ofnSearch: _ext.type.search, ofnSearch: _ext.type.search,
oSort: _ext.type.order, oSort: _ext.type.order,
afnSortData: _ext.sort, afnSortData: _ext.order,
aoFeatures: _ext.feature, aoFeatures: _ext.feature,
oApi: _ext.internal, oApi: _ext.internal,
oStdClasses: _ext.classes, oStdClasses: _ext.classes,