mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
Merge pull request #3415 from jjanssen/fix/1511
Fixes hallotoolbar misplacement within StreamField StructBlock
This commit is contained in:
commit
49d804d831
@ -27,10 +27,11 @@ function makeHalloRichTextEditable(id) {
|
||||
}
|
||||
|
||||
var closestObj = input.closest('.object');
|
||||
var isRoot = input.closest('.struct-block').length == 0;
|
||||
|
||||
richText.hallo({
|
||||
toolbar: 'halloToolbarFixed',
|
||||
toolbarCssClass: (closestObj.hasClass('full')) ? 'full' : (closestObj.hasClass('stream-field')) ? 'stream-field' : '',
|
||||
toolbarCssClass: (closestObj.hasClass('full')) ? 'full' : (closestObj.hasClass('stream-field') && isRoot) ? 'stream-field' : '',
|
||||
plugins: halloPlugins
|
||||
}).bind('hallomodified', function(event, data) {
|
||||
input.val(data.content);
|
||||
|
Loading…
Reference in New Issue
Block a user