[15.0][MIG] web_tree_image_tooltip

pull/2165/head
Christopher Ormaza 2022-03-11 13:33:48 -05:00
parent b93d978d07
commit d257ce8585
2 changed files with 8 additions and 21 deletions

View File

@ -7,7 +7,7 @@
{ {
"name": "Show images in tree views via tooltip", "name": "Show images in tree views via tooltip",
"version": "14.0.1.0.0", "version": "15.0.1.0.0",
"author": "Therp BV, " "author": "Therp BV, "
"MONK Software, " "MONK Software, "
"Odoo Community Association (OCA), " "Odoo Community Association (OCA), "
@ -16,6 +16,12 @@
"license": "AGPL-3", "license": "AGPL-3",
"category": "Web", "category": "Web",
"depends": ["web"], "depends": ["web"],
"data": ["view/assets.xml"], "data": [],
"assets": {
"web.assets_backend": [
"web_tree_image_tooltip/static/src/scss/common.scss",
"web_tree_image_tooltip/static/src/js/tooltip.js",
],
},
"installable": True, "installable": True,
} }

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<template
id="assets_backend"
name="tree icon assets"
inherit_id="web.assets_backend"
>
<xpath expr="." position="inside">
<link
rel='stylesheet'
href='/web_tree_image_tooltip/static/src/scss/common.scss'
/>
<script
type="text/javascript"
src="/web_tree_image_tooltip/static/src/js/tooltip.js"
/>
</xpath>
</template>
</odoo>