Browser zoom and header misalignment
Browser zoom and header misalignment
kurkela
Posts: 2Questions: 0Answers: 0
Line 5448 in 1.10.15:
var bScrolling = table.height() > divBodyEl.clientHeight || divBody.css('overflow-y') == "scroll";
table.height() might be fractional, while clientHeight is always integer.
Suggested workaround:
var bScrolling = (table.height()|0) > divBodyEl.clientHeight || divBody.css('overflow-y') == "scroll";
This discussion has been closed.
Replies
Thank you! I'll look at getting this committed in shortly. I'll post back when done and tested.
Allan