summaryrefslogtreecommitdiff
path: root/web_widget_ckeditor/templates
diff options
context:
space:
mode:
Diffstat (limited to 'web_widget_ckeditor/templates')
-rw-r--r--web_widget_ckeditor/templates/assets.xml47
1 files changed, 0 insertions, 47 deletions
diff --git a/web_widget_ckeditor/templates/assets.xml b/web_widget_ckeditor/templates/assets.xml
deleted file mode 100644
index cf76b7c..0000000
--- a/web_widget_ckeditor/templates/assets.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!--
- Copyright 2021 Camptocamp SA (https://www.camptocamp.com).
- @author Iván Todorovich <ivan.todorovich@camptocamp.com>
- License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
--->
-<odoo>
-
- <template id="assets_backend" inherit_id="web.assets_backend">
- <xpath expr="//script[last()]" position="after">
- <script
- type="text/javascript"
- src="/web_widget_ckeditor/static/lib/ckeditor/build/ckeditor.js"
- />
- <script
- type="text/javascript"
- src="/web_widget_ckeditor/static/src/js/field_ckeditor.js"
- />
- </xpath>
- <xpath expr="//link[last()]" position="after">
- <link
- rel="stylesheet"
- href="/web_widget_ckeditor/static/src/scss/web_widget_ckeditor.scss"
- />
- </xpath>
- </template>
-
- <data noupdate="1">
- <!--
- This view will override the default html wysiwyg editor with CKEditor.
- Disable or remove it if you only want to use CKEditor explicitly.
- -->
- <template
- id="assets_backend_field_html_override"
- name="Override HTML field with CKEditor"
- inherit_id="assets_backend"
- >
- <xpath expr="//script[last()]" position="after">
- <script
- type="text/javascript"
- src="/web_widget_ckeditor/static/src/js/field_html_override.js"
- />
- </xpath>
- </template>
- </data>
-
-</odoo>