blob: 54ff6afd2c2dd91d5b24e495f718add890da4553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="assets_frontend" inherit_id="website.assets_frontend">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/website_mass_mailing/static/src/scss/website_mass_mailing_popup.scss"/>
</xpath>
<xpath expr="//script[last()]" position="after">
<script type="text/javascript" src="/website_mass_mailing/static/src/js/website_mass_mailing.js"/>
</xpath>
</template>
<template id="assets_editor" inherit_id="website.assets_wysiwyg">
<xpath expr="//script[last()]" position="after">
<script type="text/javascript" src="/website_mass_mailing/static/src/js/website_mass_mailing.editor.js"/>
</xpath>
</template>
<template id="assets_tests" inherit_id="website.assets_tests">
<xpath expr="//script[last()]" position="after">
<script type="text/javascript" src="/website_mass_mailing/static/tests/tours/newsletter_popup.js"/>
</xpath>
</template>
</odoo>
|