In src/frames.js, I wonder if it would make sense to round up to the nearest whole pixel here:
function getDocumentHeight() {
return document.documentElement.offsetHeight;
}
In LAT CMS at least it appears to be causing scroll bars (presumably because our CMS is rounding down??)
Surely there's some unintended consequence of doing this that I'm not thinking of ...