Skip to content

Commit

Permalink
000e6d70c9966b8794caf52a8c287936880071f1 Fix: Use character code poin…
Browse files Browse the repository at this point in the history
…ts for UTF8 characters which are outside the ASCII range

https://datatables.net/forums/discussion/78712/

Sync to source repo @000e6d70c9966b8794caf52a8c287936880071f1
  • Loading branch information
dtbuild committed Apr 11, 2024
1 parent 2ad8d38 commit 761d040
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 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": "8f8eb03944a38e712721634e0cd6164635a8f395"
"last-sync": "000e6d70c9966b8794caf52a8c287936880071f1"
}
16 changes: 8 additions & 8 deletions js/dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -10429,24 +10429,24 @@
*/
"oPaginate": {
/**
* Label and character for first page button
* Label and character for first page button («)
*/
"sFirst": "«",
"sFirst": "\u00AB",

/**
* Last page button
* Last page button (»)
*/
"sLast": "»",
"sLast": "\u00BB",

/**
* Next page button
* Next page button (›)
*/
"sNext": "",
"sNext": "\u203A",

/**
* Previous page button
* Previous page button (‹)
*/
"sPrevious": "",
"sPrevious": "\u2039",
},

/**
Expand Down
16 changes: 8 additions & 8 deletions js/dataTables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10376,24 +10376,24 @@ DataTable.defaults = {
*/
"oPaginate": {
/**
* Label and character for first page button
* Label and character for first page button («)
*/
"sFirst": "«",
"sFirst": "\u00AB",

/**
* Last page button
* Last page button (»)
*/
"sLast": "»",
"sLast": "\u00BB",

/**
* Next page button
* Next page button (›)
*/
"sNext": "",
"sNext": "\u203A",

/**
* Previous page button
* Previous page button (‹)
*/
"sPrevious": "",
"sPrevious": "\u2039",
},

/**
Expand Down

0 comments on commit 761d040

Please sign in to comment.