kopia lustrzana https://github.com/wagtail/wagtail
Merge pull request #3415 from jjanssen/fix/1511
Fixes hallotoolbar misplacement within StreamField StructBlockpull/3531/head
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);
|
||||
|
|
Ładowanie…
Reference in New Issue