Skip to content

Commit

Permalink
40bc402b50f69e37be92b0f22ced34e9ab095471 Fix: Processing element coul…
Browse files Browse the repository at this point in the history
…d be cloned if scrolling was enabled

Sync to source repo @40bc402b50f69e37be92b0f22ced34e9ab095471
  • Loading branch information
dtbuild committed May 6, 2024
1 parent bc454cd commit 73095e1
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.6",
"last-sync": "2126267999007dd1c95b2cb727a35be5cd75b8e7"
"last-sync": "40bc402b50f69e37be92b0f22ced34e9ab095471"
}
2 changes: 1 addition & 1 deletion js/dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -4830,7 +4830,7 @@

// Different positioning depending on if scrolling is enabled or not
if (scrolling) {
n.prependTo( 'div.dt-scroll', settings.nTableWrapper );
n.prependTo( $('div.dt-scroll', settings.nTableWrapper) );
}
else {
n.insertBefore( table );
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 @@ -4777,7 +4777,7 @@ function _processingHtml ( settings )

// Different positioning depending on if scrolling is enabled or not
if (scrolling) {
n.prependTo( 'div.dt-scroll', settings.nTableWrapper );
n.prependTo( $('div.dt-scroll', settings.nTableWrapper) );
}
else {
n.insertBefore( table );
Expand Down

0 comments on commit 73095e1

Please sign in to comment.