----------------------------------------
* CRM-21385: WordPress top nav bar blocks top row of WYSIWYG editor when maximized
https://issues.civicrm.org/jira/browse/CRM-21385
// Restore admin bar position
$('#adminmenuwrap').css('z-index', '');
}
+ })
+ .on('crmWysiwygCreate', function(e, type, editor) {
+ if (type === 'ckeditor') {
+ editor.on('maximize', function(e) {
+ $('#wpadminbar').toggle(e.data === 2);
+ });
+ }
});
});
editor.on('maximize', function (e) {
$('#civicrm-menu').toggle(e.data === 2);
});
+ $(editor.element.$).trigger('crmWysiwygCreate', ['ckeditor', editor]);
deferred.resolve();
}