Status Bar
These options control the status bar at the bottom of the editor, which can show element path breadcrumbs and branding.
Options
| Option | Type | Default | Description |
|---|---|---|---|
statusbar | boolean | true | Show the status bar at the bottom of the editor. Hiding it also hides the resize handle, element path, and branding. |
elementpath | boolean | true | Show the element path breadcrumbs in the status bar. Displays the DOM hierarchy of the element at the current cursor position. Clicking a breadcrumb selects that element. |
branding | boolean | true | Show Editor42 branding in the status bar. |
Example
editor42.init({
selector: 'textarea',
statusbar: true,
elementpath: true,
branding: false
});