[IMP] web_send_message_popup: black, isort, prettier

pull/2519/head
hkapatel 2021-07-09 14:11:31 +05:30 committed by Du-ma
parent 823a0ac849
commit 3f1cbf9750
1 changed files with 3 additions and 3 deletions

View File

@ -1,15 +1,15 @@
/* Copyright 2019-2021 Camptocamp SA
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
odoo.define("web_send_message_popup.Chatter", function(require) {
odoo.define("web_send_message_popup.Chatter", function (require) {
"use strict";
var Chatter = require("mail.Chatter");
Chatter.include({
_onOpenComposerMessage: function() {
_onOpenComposerMessage: function () {
this._super.apply(this, arguments);
var self = this;
this._suggestedPartnersProm.then(function() {
this._suggestedPartnersProm.then(function () {
self._composer._onOpenFullComposer();
});
},