mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
odoo.define('app_system_name', function (require) {
|
|
"use strict";
|
|
|
|
var WebClient = require('web.WebClient');
|
|
WebClient.include({
|
|
init: function() {
|
|
this._super.apply(this, arguments);
|
|
this.set('title_part', {"zopenerp": document.title});
|
|
}
|
|
});
|
|
|
|
}); |