datatables.net 2.3.6 → 2.3.7
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/js/dataTables.js +7 -3
- package/js/dataTables.min.js +2 -2
- package/js/dataTables.min.mjs +2 -2
- package/js/dataTables.mjs +7 -3
- package/package.json +1 -1
package/js/dataTables.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! DataTables 2.3.
|
|
1
|
+
/*! DataTables 2.3.7
|
|
2
2
|
* © SpryMedia Ltd - datatables.net/license
|
|
3
3
|
*/
|
|
4
4
|
|
|
@@ -413,7 +413,7 @@ var DataTable = function ( selector, options )
|
|
|
413
413
|
if ( tfoot.length === 0 ) {
|
|
414
414
|
// If we are a scrolling table, and no footer has been given, then we need to create
|
|
415
415
|
// a tfoot element for the caption element to be appended to
|
|
416
|
-
tfoot = $('<tfoot/>').
|
|
416
|
+
tfoot = $('<tfoot/>').appendTo($this);
|
|
417
417
|
}
|
|
418
418
|
oSettings.nTFoot = tfoot[0];
|
|
419
419
|
|
|
@@ -8849,6 +8849,10 @@ var __column_selector = function ( settings, selector, opts )
|
|
|
8849
8849
|
return null;
|
|
8850
8850
|
}
|
|
8851
8851
|
|
|
8852
|
+
if (col.responsiveVisible === false) {
|
|
8853
|
+
return null;
|
|
8854
|
+
}
|
|
8855
|
+
|
|
8852
8856
|
// Selector
|
|
8853
8857
|
if (match[1]) {
|
|
8854
8858
|
return $(nodes[idx]).filter(match[1]).length > 0 ? idx : null;
|
|
@@ -10253,7 +10257,7 @@ function cleanHeader(node, className) {
|
|
|
10253
10257
|
* @type string
|
|
10254
10258
|
* @default Version number
|
|
10255
10259
|
*/
|
|
10256
|
-
DataTable.version = "2.3.
|
|
10260
|
+
DataTable.version = "2.3.7";
|
|
10257
10261
|
|
|
10258
10262
|
/**
|
|
10259
10263
|
* Private data store, containing all of the settings objects that are
|