Skip to content

Commit eb09797

Browse files
committed
DataTables v1.10.13
1 parent 6efdb6e commit eb09797

19 files changed

+442
-414
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "drmonty-datatables",
33
"description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.",
44
"homepage": "http://datatables.net",
5-
"version": "1.10.12",
5+
"version": "1.10.13",
66
"keywords": [
77
"select",
88
"multiselect",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "drmonty-datatables",
33
"repo": "drmonty/datatables",
44
"description": "DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.",
5-
"version": "1.10.12",
5+
"version": "1.10.13",
66
"homepage": "http://www.datatables.net/",
77
"licenses": [
88
{

css/dataTables.bootstrap.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ table.dataTable {
88
table.dataTable td,
99
table.dataTable th {
1010
-webkit-box-sizing: content-box;
11-
-moz-box-sizing: content-box;
1211
box-sizing: content-box;
1312
}
1413
table.dataTable td.dataTables_empty,

css/dataTables.bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/dataTables.semanticui.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ table.dataTable.table thead td.sorting_desc:after {
4141
table.dataTable.table td,
4242
table.dataTable.table th {
4343
-webkit-box-sizing: content-box;
44-
-moz-box-sizing: content-box;
4544
box-sizing: content-box;
4645
}
4746
table.dataTable.table td.dataTables_empty,

css/dataTables.semanticui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dataTables.bootstrap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,11 @@ DataTable.ext.renderer.pageButton.bootstrap = function ( settings, host, idx, bu
172172
buttons
173173
);
174174

175-
if ( activeEl ) {
175+
if ( activeEl !== undefined ) {
176176
$(host).find( '[data-dt-idx='+activeEl+']' ).focus();
177177
}
178178
};
179179

180180

181181
return DataTable;
182-
}));
182+
}));

js/dataTables.bootstrap.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dataTables.bootstrap4.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ var DataTable = $.fn.dataTable;
4646
/* Set the defaults for DataTables initialisation */
4747
$.extend( true, DataTable.defaults, {
4848
dom:
49-
"<'row'<'col-md-6'l><'col-md-6'f>>" +
50-
"<'row'<'col-md-12'tr>>" +
51-
"<'row'<'col-md-5'i><'col-md-7'p>>",
49+
"<'row'<'col-xs-12 col-md-6'l><'col-xs-12 col-md-6'f>>" +
50+
"<'row'<'col-xs-12'tr>>" +
51+
"<'row'<'col-xs-12 col-md-5'i><'col-xs-12 col-md-7'p>>",
5252
renderer: 'bootstrap'
5353
} );
5454

@@ -174,11 +174,11 @@ DataTable.ext.renderer.pageButton.bootstrap = function ( settings, host, idx, bu
174174
buttons
175175
);
176176

177-
if ( activeEl ) {
177+
if ( activeEl !== undefined ) {
178178
$(host).find( '[data-dt-idx='+activeEl+']' ).focus();
179179
}
180180
};
181181

182182

183183
return DataTable;
184-
}));
184+
}));

0 commit comments

Comments
 (0)