summaryrefslogtreecommitdiff
path: root/addons/web/static/src/js/tools/test_menus_loader.js
blob: 4da82a276f8a7c257194be3b6ce6afddeb633c52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
odoo.define('web.clickEverywhere', function (require) {
    "use strict";
    var ajax = require('web.ajax');
    function startClickEverywhere(xmlId, appsMenusOnly) {
        ajax.loadJS('web/static/src/js/tools/test_menus.js').then(
            function() {
                clickEverywhere(xmlId, appsMenusOnly);
            }
        );
    }
    return startClickEverywhere;
});