Skip to content

Commit

Permalink
d7af7bf021cba7554fd3d2a64dc9aafe4c8c155a Dev: Also stop false positiv…
Browse files Browse the repository at this point in the history
…es with the incomplete tag check, since that is then handled on the next lines of the HTML strip function

Sync to source repo @d7af7bf021cba7554fd3d2a64dc9aafe4c8c155a
  • Loading branch information
dtbuild committed Apr 10, 2024
1 parent 1f609ac commit cb00cdd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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": "2.0.3",
"last-sync": "f83e766610719968654cdab4a63ebee5cf1abfbb"
"last-sync": "d7af7bf021cba7554fd3d2a64dc9aafe4c8c155a"
}
2 changes: 1 addition & 1 deletion js/dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@

var _re_dic = {};
var _re_new_lines = /[\r\n\u2028]/g;
var _re_html = /<[^>]*>/g;
var _re_html = /<([^>]*>)/g;

// This is not strict ISO8601 - Date.parse() is quite lax, although
// implementations differ between browsers.
Expand Down
2 changes: 1 addition & 1 deletion js/dataTables.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dataTables.min.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dataTables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ var _api_registerPlural; // DataTable.Api.registerPlural

var _re_dic = {};
var _re_new_lines = /[\r\n\u2028]/g;
var _re_html = /<[^>]*>/g;
var _re_html = /<([^>]*>)/g;

// This is not strict ISO8601 - Date.parse() is quite lax, although
// implementations differ between browsers.
Expand Down

0 comments on commit cb00cdd

Please sign in to comment.