Sticky statusbar

This example shows how to make the statusbar fixed at the bottom border of the browser window.

Code

<!-- element -->
<textarea id="entry">...</textarea>

<!-- call -->
<script>
let app = Redactor('#entry', {
    plugins: ['counter'],
    statusbar: {
        sticky: true
    }
});
</script>