Skip to content

Commit

Permalink
f2bc8be46633c11229e45d23f9dd661fbdd9d8e7 Dev: Additional http -> http…
Browse files Browse the repository at this point in the history
…s changes

Sync to source repo @f2bc8be46633c11229e45d23f9dd661fbdd9d8e7
  • Loading branch information
AllanJard committed Nov 2, 2023
1 parent 3089198 commit 9c3e5f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion datatables.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-tag": "1.13.6",
"last-sync": "afb4e235f0945a56ecdbeee92e3e4aab8969057b"
"last-sync": "f2bc8be46633c11229e45d23f9dd661fbdd9d8e7"
}
6 changes: 3 additions & 3 deletions js/jquery.dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -4650,7 +4650,7 @@
// If it looks like there is an HTML entity in the string,
// attempt to decode it so sorting works as expected. Note that
// we could use a single line of jQuery to do this, but the DOM
// method used here is much faster http://jsperf.com/html-decode
// method used here is much faster https://jsperf.com/html-decode
if ( cellData.indexOf && cellData.indexOf('&') !== -1 ) {
__filter_div.innerHTML = cellData;
cellData = __filter_div_textContent ?
Expand Down Expand Up @@ -9790,7 +9790,7 @@
/**
* Version string for plug-ins to check compatibility. Allowed format is
* `a.b.c-d` where: a:int, b:int, c:int, d:string(dev|beta|alpha). `d` is used
* only for non-release builds. See http://semver.org/ for more information.
* only for non-release builds. See https://semver.org/ for more information.
* @member
* @type string
* @default Version number
Expand Down Expand Up @@ -15156,7 +15156,7 @@
// string
"string-pre": function ( a ) {
// This is a little complex, but faster than always calling toString,
// http://jsperf.com/tostring-v-check
// https://jsperf.com/tostring-v-check
return _empty(a) ?
'' :
typeof a === 'string' ?
Expand Down
6 changes: 3 additions & 3 deletions js/jquery.dataTables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4593,7 +4593,7 @@ function _fnFilterData ( settings )
// If it looks like there is an HTML entity in the string,
// attempt to decode it so sorting works as expected. Note that
// we could use a single line of jQuery to do this, but the DOM
// method used here is much faster http://jsperf.com/html-decode
// method used here is much faster https://jsperf.com/html-decode
if ( cellData.indexOf && cellData.indexOf('&') !== -1 ) {
__filter_div.innerHTML = cellData;
cellData = __filter_div_textContent ?
Expand Down Expand Up @@ -9733,7 +9733,7 @@ _api_register( 'i18n()', function ( token, def, plural ) {
/**
* Version string for plug-ins to check compatibility. Allowed format is
* `a.b.c-d` where: a:int, b:int, c:int, d:string(dev|beta|alpha). `d` is used
* only for non-release builds. See http://semver.org/ for more information.
* only for non-release builds. See https://semver.org/ for more information.
* @member
* @type string
* @default Version number
Expand Down Expand Up @@ -15099,7 +15099,7 @@ $.extend( _ext.type.order, {
// string
"string-pre": function ( a ) {
// This is a little complex, but faster than always calling toString,
// http://jsperf.com/tostring-v-check
// https://jsperf.com/tostring-v-check
return _empty(a) ?
'' :
typeof a === 'string' ?
Expand Down

0 comments on commit 9c3e5f3

Please sign in to comment.