datatables.net 2.2.2 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +2 -2
- package/js/dataTables.js +314 -104
- package/js/dataTables.min.js +2 -2
- package/js/dataTables.min.mjs +2 -2
- package/js/dataTables.mjs +314 -104
- package/package.json +1 -1
- package/types/types.d.ts +90 -28
package/Readme.md
CHANGED
|
@@ -25,7 +25,7 @@ Then, to load and initialise DataTables in your code use:
|
|
|
25
25
|
import DataTable from 'datatables.net';
|
|
26
26
|
|
|
27
27
|
new DataTable('#myTable', {
|
|
28
|
-
//
|
|
28
|
+
// initialisation options
|
|
29
29
|
});
|
|
30
30
|
```
|
|
31
31
|
|
|
@@ -35,7 +35,7 @@ If you are using an old version of Node or a CommonJS loader, you might need to
|
|
|
35
35
|
const DataTable = require('datatables.net');
|
|
36
36
|
|
|
37
37
|
new DataTable('#myTable', {
|
|
38
|
-
//
|
|
38
|
+
// initialisation options
|
|
39
39
|
});
|
|
40
40
|
```
|
|
41
41
|
|