Skip to content

Commit 691e7fc

Browse files
committedSep 8, 2021
b231df3c8fdf73ee04bcd2a6b75bb94e94322a74
Sync to source repo @b231df3c8fdf73ee04bcd2a6b75bb94e94322a74
1 parent 46aa22b commit 691e7fc

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed
 

‎datatables.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
"types/types.d.ts"
99
],
1010
"src-repo": "http://github.com/DataTables/DataTablesSrc",
11-
"last-tag": "1.11.1"
12-
}
11+
"last-tag": "1.11.1",
12+
"last-sync": "b231df3c8fdf73ee04bcd2a6b75bb94e94322a74"
13+
}

‎js/jquery.dataTables.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! DataTables 1.11.0
1+
/*! DataTables 1.11.1
22
* ©2008-2021 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary DataTables
77
* @description Paginate, search and order HTML tables
8-
* @version 1.11.0
8+
* @version 1.11.1
99
* @file jquery.dataTables.js
1010
* @author SpryMedia Ltd
1111
* @contact www.datatables.net
@@ -1094,8 +1094,8 @@
10941094
dataType: 'json',
10951095
url: oLanguage.sUrl,
10961096
success: function ( json ) {
1097-
_fnLanguageCompat( json );
10981097
_fnCamelToHungarian( defaults.oLanguage, json );
1098+
_fnLanguageCompat( json );
10991099
$.extend( true, oLanguage, json );
11001100

11011101
_fnCallbackFire( oSettings, null, 'i18n', [oSettings]);
@@ -5395,7 +5395,7 @@
53955395

53965396
// Read all widths in next pass
53975397
_fnApplyToChildren( function(nSizer) {
5398-
let style = window.getComputedStyle ?
5398+
var style = window.getComputedStyle ?
53995399
window.getComputedStyle(nSizer).width :
54005400
_fnStringToCss( $(nSizer).width() );
54015401

@@ -9578,7 +9578,7 @@
95789578
* @type string
95799579
* @default Version number
95809580
*/
9581-
DataTable.version = "1.11.0";
9581+
DataTable.version = "1.11.1";
95829582

95839583
/**
95849584
* Private data store, containing all of the settings objects that are

‎js/jquery.dataTables.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.