16 lines
358 B
JavaScript
Executable File
16 lines
358 B
JavaScript
Executable File
/** @odoo-module **/
|
|
|
|
import { WebClient } from "@web/webclient/webclient";
|
|
import {patch} from "@web/core/utils/patch";
|
|
|
|
var core = require('web.core');
|
|
var _lt = core._lt;
|
|
|
|
patch(WebClient.prototype, "Web Window Title", {
|
|
setup() {
|
|
const title = _lt("Newbiz");
|
|
this._super();
|
|
this.title.setParts({ zopenerp: title });
|
|
}
|
|
});
|