Documentation

Toolbar

sticky

Type: Boolean

Default: true

By default, when scrolling the page, the toolbar becomes sticky at the top of the browser window. This can be disabled like this:

Revolvapp('#myemail', {
    toolbar: {
        sticky: false
    }
});

stickyTopOffset

Type: Number

Default: 0

If you already have a sticky navigation on the page or another layer bound to the scroll, then you can change the position of the editor toolbar using this setting. The setting value is specified in pixels.

Revolvapp('#myemail', {
    toolbar: {
        stickyTopOffset: 40
    }
});