Fix initial scroll in rich text

pull/1/head
yflory 4 years ago
parent 9d64883437
commit 2da6ac87c3

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

Loading…
Cancel
Save