Create skeleton for new History region in editor

[MAILPOET-1976]
This commit is contained in:
Ján Mikláš
2019-05-28 12:46:05 +02:00
committed by M. Shull
parent 243dcb9889
commit 7492b20bc4
11 changed files with 49 additions and 0 deletions

View File

@@ -163,6 +163,7 @@ testHelpers.loadTemplate('blocks/text/widget.hbs', window, { id: 'newsletter_edi
testHelpers.loadTemplate('blocks/text/settings.hbs', window, { id: 'newsletter_editor_template_text_settings' });
testHelpers.loadTemplate('components/heading.hbs', window, { id: 'newsletter_editor_template_heading' });
testHelpers.loadTemplate('components/history.hbs', window, { id: 'newsletter_editor_template_history' });
testHelpers.loadTemplate('components/save.hbs', window, { id: 'newsletter_editor_template_save' });
testHelpers.loadTemplate('components/styles.hbs', window, { id: 'newsletter_editor_template_styles' });
@@ -177,6 +178,7 @@ global.templates = {
styles: Handlebars.compile(jQuery('#newsletter_editor_template_styles').html()),
save: Handlebars.compile(jQuery('#newsletter_editor_template_save').html()),
heading: Handlebars.compile(jQuery('#newsletter_editor_template_heading').html()),
history: Handlebars.compile(jQuery('#newsletter_editor_template_history').html()),
sidebar: Handlebars.compile(jQuery('#newsletter_editor_template_sidebar').html()),
sidebarContent: Handlebars.compile(jQuery('#newsletter_editor_template_sidebar_content').html()),