Browser zoom and header misalignment

Browser zoom and header misalignment

kurkelakurkela Posts: 2Questions: 0Answers: 0
edited June 2017 in Free community support

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";

Replies

  • allanallan Posts: 63,893Questions: 1Answers: 10,531 Site admin

    Thank you! I'll look at getting this committed in shortly. I'll post back when done and tested.

    Allan

This discussion has been closed.