Skip to content

Commit

Permalink
Fix: Correctly set header row height to 0 regardless of box-sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJard committed Feb 15, 2022
1 parent a85a9e3 commit 1c4cef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/core/core.scrolling.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ function _fnScrollDraw ( settings )
nToSize.style.width = headerWidths[i];
}, headerTrgEls );

$(headerSrcEls).height(0);
$(headerSrcEls).css('height', 0);

/* Same again with the footer if we have one */
if ( footer )
Expand Down

0 comments on commit 1c4cef9

Please sign in to comment.