Context bar

This example shows how to enable the context toolbar that pops up when text is selected.

Code

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

<!-- call -->
<script>
let app = Redactor('#entry', {
    context: true
});
</script>