This example demonstrates how to configure Redactor when it is contained within a scrollable layer.
<!-- element -->
<div id="target" style="overflow: auto;">
<textarea id="entry">...</textarea>
</div>
<!-- call -->
<script>
let app = Redactor('#entry', {
scrollTarget: '#target'
});
</script>