Odoo18-Base/addons/html_editor/static/src/wysiwyg.xml
2025-01-06 10:57:38 +07:00

19 lines
986 B
XML

<templates xml:space="preserve">
<t t-name="html_editor.Wysiwyg">
<div class="o-wysiwyg d-flex flex-column p-0" t-att-class="props.class" t-att-style="props.style">
<t t-if="props.toolbar and state.showToolbar and editor.shared.toolbar">
<Toolbar toolbar="editor.shared.toolbar.getToolbarInfo()" class="'shadow-sm'"/>
</t>
<LocalOverlayContainer localOverlay="overlayRef" identifier="env.localOverlayContainerKey"/>
<div class="flex-grow-1" t-att-class="{'overflow-auto': !props.iframe}">
<t t-if="props.iframe">
<iframe t-ref="content" class="w-100 h-100" t-att-data-class="props.contentClass" t-on-blur="props.onBlur"/>
</t>
<t t-else="">
<div t-att-class="props.contentClass" t-ref="content" t-on-blur="props.onBlur" contenteditable="true"/>
</t>
</div>
</div>
</t>
</templates>