[FIX] web_responsive: Other minor fixes

* Add Tecnativa as author
* Remove untestable JS method
* Rename to web_responsive
This commit is contained in:
Dave Lasley
2016-10-11 06:28:15 -07:00
parent ac0d077031
commit b5eed537f8
16 changed files with 25 additions and 32 deletions

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2016 LasLabs Inc.
@author Dave Lasley <dave@laslabs.com>
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
-->
<odoo>
<template id="assets_backend" name="Open Mobile Assets" inherit_id="web.assets_backend">
<xpath expr=".">
<link rel="stylesheet"
type="text/css"
href="/web_responsive/static/lib/css/drawer.3.2.0.css"
/>
<link rel="stylesheet"
href="/web_responsive/static/src/less/main.less"
/>
<link rel="stylesheet"
href="/web_responsive/static/src/less/navbar.less"
/>
<link rel="stylesheet"
href="/web_responsive/static/src/less/app_drawer.less"
/>
<link rel="stylesheet"
href="/web_responsive/static/src/less/variables.less"
/>
<script type="application/javascript"
src="/web_responsive/static/lib/js/iscroll-probe.5.2.0.js"
/>
<script type="application/javascript"
src="/web_responsive/static/lib/js/drawer.3.2.0.js"
/>
<script type="application/javascript"
src="/web_responsive/static/src/js/web_responsive.js"
/>
</xpath>
</template>
<template id="qunit_suite" inherit_id="web.qunit_suite">
<xpath expr="//html/head" position="inside">
<script type="application/javascript"
src="/web_responsive/static/tests/js/web_responsive.js"
/>
</xpath>
</template>
</odoo>