You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This script performed well in my project with the exception of an apx 10 to 20 extra pixels that would always overflow vertically, resulting in a scroll bar with a very small scroll area, regardless of the size of the responsive frame's contents. To fix this, I had to change line 82 from
elem.css('height', height + 'px');
to this
elem.css('height', (height+20) + 'px');
The text was updated successfully, but these errors were encountered:
I confirm the issue. Another option to fix it (on the client side!) is to change 120 line from var h = document.body.offsetHeight;
to var h = document.body.offsetHeight + 20;
This script performed well in my project with the exception of an apx 10 to 20 extra pixels that would always overflow vertically, resulting in a scroll bar with a very small scroll area, regardless of the size of the responsive frame's contents. To fix this, I had to change line 82 from
to this
The text was updated successfully, but these errors were encountered: