I am trying to achieve the same effect that is seen in this example of the hallo editor, and here is a screenshot:
Basically I would rather have the editor appear above the current content that is being edited than at the top of the page. Is this something that can be achieved by passing settings to midgardeCreate()
?
I thought something along these lines would get me on the right track, but this keeps the editor at the top of the page.
jQuery('body').midgardCreate('configureEditor', 'default', 'halloWidget', {
plugins: {
halloformat: {},
halloblacklist: {
tags: ['br']
}
},
toolbarState: 'halloToolbarFixed',
parentElement: '.create-ui-toolbar-dynamictoolarea .create-ui-tool-freearea'
});