1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-12-01 13:24:10 +01:00
DataTables/media/js
Allan Jardine 9182f8c285 Fix: API performance improvement - sigifnicantly faster API access for large tables. Testing with a table of 50'000 rows rows().count() is now 23mS executation time, while it was 996mS before!
- The `_unique()` function was a killer because it uses nested loops to
  determine if items have been seen before in an array. In the majority
  of cases when accessing the API the items will be unique already, so
  running the nested loops is hugely detremental to performance.
- Rather than attempting to improve the performance of `_unique()`
  itself, we try to avoid running its algorithim at all. An array of the
  items is sorted and tested to see if there are unique items or not. In
  the majority of cases this means a massive performance boost since it
  is a single loop rather than a nested loop.
2017-04-14 21:10:23 +01:00
..
dataTables.bootstrap4.js Revert: Remove pagination-sm class from DataTables paging container - 2017-04-12 19:59:54 +01:00
dataTables.bootstrap4.min.js Revert: Remove pagination-sm class from DataTables paging container - 2017-04-12 19:59:54 +01:00
dataTables.bootstrap.js Fix: If there is no active element when paging, don't attempt to refocus 2016-12-02 17:59:44 +00:00
dataTables.bootstrap.min.js Fix - CSS: Columns which are orderable in a single direction only should show a pointer cursor 2017-04-07 11:04:03 +01:00
dataTables.foundation.js Fix: Fooundation 6 styling for the processing element needs to use the callout class 2016-12-02 17:51:53 +00:00
dataTables.foundation.min.js Fix - CSS: Columns which are orderable in a single direction only should show a pointer cursor 2017-04-07 11:04:03 +01:00
dataTables.jqueryui.js Update: Allow a window to be passed in for CommonJS factory which gives DataTables the ability to be used in a headless environment (server-side rendering for example) 2015-11-03 16:32:39 +00:00
dataTables.jqueryui.min.js Fix - CSS: Columns which are orderable in a single direction only should show a pointer cursor 2017-04-07 11:04:03 +01:00
dataTables.material.js Fix: If the paging active element was index 0, it wouldn't be refocused 2016-12-02 18:00:17 +00:00
dataTables.material.min.js Fix - CSS: Columns which are orderable in a single direction only should show a pointer cursor 2017-04-07 11:04:03 +01:00
dataTables.semanticui.js Fix: Make SemanticUI integration stackable 2017-04-13 15:53:46 +01:00
dataTables.semanticui.min.js Fix: Make SemanticUI integration stackable 2017-04-13 15:53:46 +01:00
dataTables.uikit.js Adding new integration files from the source repo. These are all currently proof of concept / technical previews and not ready for production use. 2016-02-11 10:28:13 +00:00
dataTables.uikit.min.js Fix - CSS: Columns which are orderable in a single direction only should show a pointer cursor 2017-04-07 11:04:03 +01:00
jquery.dataTables.js Fix: API performance improvement - sigifnicantly faster API access for large tables. Testing with a table of 50'000 rows rows().count() is now 23mS executation time, while it was 996mS before! 2017-04-14 21:10:23 +01:00
jquery.dataTables.min.js Fix: API performance improvement - sigifnicantly faster API access for large tables. Testing with a table of 50'000 rows rows().count() is now 23mS executation time, while it was 996mS before! 2017-04-14 21:10:23 +01:00
jquery.js Dev: Update to include the latest jQuery in the repo 2016-02-11 14:29:35 +00:00