Fix rounding error with rich text scrollbar

pull/1/head
yflory 2021-01-11 17:39:50 +01:00
parent 94ce56fbac
commit 43d2b308ab
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ define([
// Get scroll position
var sTop = $iframe.scrollTop();
var sTopMax = $iframe.innerHeight() - $('iframe').innerHeight();
var scrollMax = sTop === sTopMax;
var scrollMax = Math.abs(sTop - sTopMax) < 1;
// Apply the changes
var patch = (DD).diff(inner, userDocStateDom);