Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

aa.gusti / odoo-dev

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • odoo-dev
  • idg_theme
  • static
  • src
  • js
  • load.js
  • Kunto Bregananta Adi's avatar
    custom theme · f608f07b
    Kunto Bregananta Adi committed Dec 09, 2021
    f608f07b Browse Files
load.js 320 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
odoo.define('idg_theme.Load', function (require) {
    "use strict";

    var rpc = require('web.rpc');
    var session = require('web.session');

    $(document).ready(function () {
        rpc.query({
            model: 'theme.data',
            method: 'action_apply',
            args: [this]
        });
    });
});